Files
milky-warp/src-tauri/tauri.conf.json
2023-08-21 16:28:25 +08:00

73 lines
1.9 KiB
JSON

{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "milky-warp",
"version": "../package.json"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"setPosition": true,
"setIgnoreCursorEvents": true,
"setSize": true,
"show": true,
"hide": true
},
"protocol": {
"asset": true,
"assetScope": ["**"]
},
"globalShortcut": {
"all": true
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.milky-warp.app",
"targets": "all"
},
"security": {
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost"
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"resizable": false,
"title": "Milky Warp",
"width": 256,
"height": 256,
"transparent": true,
"decorations": false,
"alwaysOnTop": true,
"center": true,
"visible": false
}
],
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
}
}
}