text-recover/src-tauri/tauri.conf.json

44 lines
828 B
JSON
Raw Permalink Normal View History

2024-03-14 15:44:56 +08:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
2024-03-14 21:55:01 +08:00
"productName": "TextRecover",
"version": "1.0.0"
2024-03-14 15:44:56 +08:00
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
2024-03-15 09:58:17 +08:00
"title": "Text Recover - 乱码恢复",
2024-03-14 15:44:56 +08:00
"width": 800,
2024-03-15 09:52:29 +08:00
"height": 600
2024-03-14 15:44:56 +08:00
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
2024-03-14 21:55:01 +08:00
"identifier": "com.taurusxin.text-recover",
2024-03-14 15:44:56 +08:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}