nodes/app/src-tauri/tauri.conf.json

35 lines
643 B
JSON
Raw Normal View History

2024-03-06 14:01:07 +01:00
{
"productName": "tauri-app",
"version": "0.0.0",
"identifier": "nodes.max.richter.dev",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:5173",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "tauri-app",
"width": 800,
"height": 600
}
],
"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"
]
}
}