KTemplate/src-tauri/tauri.conf.json

37 lines
743 B
JSON
Raw Normal View History

2024-03-24 23:38:28 +00:00
{
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
2024-10-03 03:59:14 +00:00
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
2024-03-24 23:38:28 +00:00
},
2024-10-03 03:59:14 +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-03-24 23:38:28 +00:00
},
2024-10-03 03:59:14 +00:00
"productName": "KlectrTemplate",
"mainBinaryName": "KlectrTemplate",
"version": "0.0.0",
"identifier": "com.klectr-template.dev",
"plugins": {},
"app": {
"withGlobalTauri": true,
2024-03-24 23:38:28 +00:00
"windows": [
{
"title": "KlectrTemplate",
"width": 500,
2024-10-03 03:59:14 +00:00
"height": 500
2024-03-24 23:38:28 +00:00
}
],
"security": {
"csp": null
}
}
2024-10-03 03:59:14 +00:00
}