1
0
Fork 0
esix-client/src-tauri/tauri.conf.json

39 lines
759 B
JSON
Raw Normal View History

2024-02-17 01:29:25 +00:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
2024-10-23 21:21:27 +00:00
"frontendDist": "../build",
2024-10-23 17:18:36 +00:00
"devUrl": "http://localhost:1420"
2024-02-17 01:29:25 +00:00
},
2024-10-23 17:18:36 +00:00
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2024-02-17 01:29:25 +00:00
},
2024-10-23 17:18:36 +00:00
"productName": "esix-client",
"mainBinaryName": "esix-client",
"version": "0.0.0",
"identifier": "de.dhalucario.esix-client",
"plugins": {},
"app": {
2024-02-17 01:29:25 +00:00
"windows": [
{
2024-03-17 01:46:07 +00:00
"fullscreen": false,
2024-02-17 01:29:25 +00:00
"resizable": true,
"title": "esix-client",
"width": 800,
"height": 600
}
2024-10-23 17:18:36 +00:00
],
"security": {
"csp": null
}
2024-02-17 01:29:25 +00:00
}
}