Files
VRCT/src-tauri/tauri.conf.json
2024-07-25 01:01:22 +09:00

58 lines
1.2 KiB
JSON

{
"build": {
"beforeDevCommand": "npm run build-python && npm run dev",
"beforeBuildCommand": "npm run build-python && npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "tauri-app",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"window": {
"create": true,
"close": true,
"setAlwaysOnTop": true
},
"shell": {
"all": false,
"open": true,
"sidecar": true,
"scope": [
{
"name": "bin/test", "sidecar": true,"args": true
}
]
}
},
"windows": [
{
"title": "tauri-app",
"width": 870,
"height": 654
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri-test.dev",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"bin/test"
]
}
}
}