gensoukyou/src-tauri/tauri.conf.json

43 lines
731 B
JSON
Raw Normal View History

2024-08-07 19:23:38 -07:00
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "gensoukyou",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
"title": "gensoukyou",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
2024-08-11 17:33:02 -07:00
"identifier": "gensoukyou",
2024-08-07 19:23:38 -07:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}