xtoyr/src-tauri/tauri.conf.json

37 lines
610 B
JSON
Raw Normal View History

2024-05-23 19:43:44 +02:00
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "xtoyr",
"version": "0.0.1"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
"title": "xtoyr",
"width": 1280,
"height": 720
}
],
"security": {
"csp": null
},
"bundle": {
2024-05-23 20:11:16 +02:00
"active": false,
2024-05-23 19:43:44 +02:00
"targets": "all",
"identifier": "fr.mylloon",
"icon": ["icons/icon.png", "icons/icon.ico"]
}
}
}