exe-parse/src-tauri/tauri.conf.json
2024-12-10 14:52:32 +08:00

43 lines
849 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "test-tauri",
"version": "0.1.0",
"identifier": "com.test-tauri.app",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "My CFF",
"width": 1000,
"height": 800,
"visible": false
},
{
"label": "splashscreen",
"url": "/splashscreen"
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}