mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 01:09:56 -05:00
53 lines
1.0 KiB
JSON
53 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Moku",
|
|
"version": "0.10.0",
|
|
"identifier": "io.github.MokuProject.Moku",
|
|
"build": {
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist",
|
|
"beforeBuildCommand": "pnpm build:static"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Moku",
|
|
"width": 1280,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"decorations": false,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["nsis"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
],
|
|
"externalBin": [],
|
|
"windows": {
|
|
"nsis": {
|
|
"installerIcon": "icons/icon.ico",
|
|
"installMode": "currentUser"
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"shell": {
|
|
"open": true
|
|
}
|
|
}
|
|
} |