FastWave2.0/src-tauri/tauri.conf.json
2024-06-05 01:10:14 +02:00

41 lines
848 B
JSON

{
"productName": "FastWave",
"version": "0.1.0",
"identifier": "com.fastwave",
"build": {
"frontendDist": "../frontend_dist",
"devUrl": "http://localhost:8080",
"beforeDevCommand": "makers mzoon_for_tauri start",
"beforeBuildCommand": "makers mzoon_for_tauri build -r -f"
},
"app": {
"macOSPrivateApi": true,
"withGlobalTauri": true,
"windows": [
{
"title": "FastWave",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"visible": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}