Krys4lide/crates/desktop/tauri.conf.json

41 lines
847 B
JSON
Raw Normal View History

2024-07-17 12:12:26 +02:00
{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "Chrys4lide LGO",
"version": "0.0.1",
"identifier": "org.p4pillon.chrys4lide.lgo",
2024-07-17 12:12:26 +02:00
"build": {
"beforeDevCommand": {
"cwd": "../../frontend",
"script": "bun run dev"
},
"devUrl": "http://localhost:1420",
"beforeBuildCommand": {
"cwd": "../../frontend",
"script": "bun run generate"
},
"frontendDist": "../../frontend/dist"
2024-07-17 12:12:26 +02:00
},
"app": {
"windows": [
{
"title": "Chrys4lide | LG0",
2024-07-17 12:12:26 +02:00
"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"
]
}
}