KTemplate/src-tauri/tauri.conf.json
2024-10-02 23:59:14 -04:00

37 lines
743 B
JSON

{
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "KlectrTemplate",
"mainBinaryName": "KlectrTemplate",
"version": "0.0.0",
"identifier": "com.klectr-template.dev",
"plugins": {},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "KlectrTemplate",
"width": 500,
"height": 500
}
],
"security": {
"csp": null
}
}
}