snotes-deck/src-tauri/tauri.conf.json

63 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2024-04-07 21:31:08 +02:00
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "snotes-deck",
2024-05-05 22:57:40 +02:00
"version": "0.0.11"
2024-04-07 21:31:08 +02:00
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
2024-04-22 14:52:45 +02:00
},
"dialog": {
"all": true
},
"fs": {
"all": false,
"copyFile": false,
"createDir": false,
"exists": false,
"readDir": true,
"readFile": true,
"removeDir": false,
"removeFile": false,
"renameFile": false,
"scope": [],
"writeFile": true
},
"path": {
"all": true
2024-04-07 21:31:08 +02:00
}
},
"windows": [
{
"title": "Snotes Deck",
2024-04-07 21:31:08 +02:00
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "space.maidsin.snotes-deck",
2024-04-07 21:31:08 +02:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}