Rusty-slicer/src-tauri/tauri.conf.json

45 lines
797 B
JSON
Raw Normal View History

2024-02-14 16:01:21 +00:00
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "rusty-slicer",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
2024-02-18 18:51:53 +00:00
"all": true,
2024-02-14 16:01:21 +00:00
"shell": {
2024-02-18 18:51:53 +00:00
"all": true,
2024-02-14 16:01:21 +00:00
"open": true
}
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Rusty slicer",
"width": 400,
"height": 800
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.ayabusa.slicer",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}