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

51 lines
916 B
JSON
Raw Permalink Normal View History

2024-02-14 16:01:21 +00:00
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "rusty-slicer",
"version": "1.0.0"
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": 830,
"height": 700
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
]
}
}
}