creator/app/src-tauri/tauri.conf.json
enricobuehler 60c8bb5877 refactor drawing
implement shareable cache logic
improve caching
fix drawing bug
2023-05-24 20:02:44 +02:00

53 lines
1021 B
JSON

{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "tempblade Creator",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"dialog": {
"open": true,
"save": true
},
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.tempblade.creator",
"targets": "all"
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "tempblade Creator",
"width": 1300,
"height": 900
}
]
}
}