pay-tools/src-tauri/tauri.conf.json

30 lines
677 B
JSON
Raw Normal View History

2024-08-30 10:23:26 +08:00
{
2024-09-03 16:40:06 +08:00
"productName": "PhizPayTools",
2024-09-03 15:58:18 +08:00
"version": "0.1.0",
"identifier": "com.phiz.pay.tools",
2024-08-30 10:23:26 +08:00
"build": {
"beforeDevCommand": "pnpm dev",
2024-09-03 15:58:18 +08:00
"devUrl": "http://localhost:1420",
2024-08-30 10:23:26 +08:00
"beforeBuildCommand": "pnpm build",
2024-09-03 15:58:18 +08:00
"frontendDist": "../dist"
2024-08-30 10:23:26 +08:00
},
2024-09-03 15:58:18 +08:00
"app": {
2024-08-30 10:23:26 +08:00
"windows": [
{
"title": "PhizPay Tools",
"width": 1280,
"height": 800
2024-08-30 10:23:26 +08:00
}
],
"security": {
"csp": null
}
2024-09-03 15:58:18 +08:00
},
"bundle": {
"active": true,
"targets": "all",
2024-09-18 16:06:06 +08:00
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"resources": ["./libssl-3-x64.dll", "./libcrypto-3-x64.dll"]
2024-08-30 10:23:26 +08:00
}
}