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

51 lines
916 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",
2024-03-08 15:00:34 +00:00
"version": "0.0.1"
2024-02-14 16:01:21 +00:00
},
"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
2024-03-01 13:47:42 +00:00
},
"fs": {
"scope": ["$RESOURCE/*"]
2024-02-14 16:01:21 +00:00
}
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Rusty slicer",
"width": 450,
"height": 950
2024-02-14 16:01:21 +00:00
}
],
"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"
2024-03-01 13:47:42 +00:00
],
"resources": [
"resources/ffmpeg-linux"
2024-02-14 16:01:21 +00:00
]
}
}
}