template-desktop/src-tauri/tauri.conf.json

39 lines
777 B
JSON

{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/tooling/cli/schema.json",
"build": {
"beforeDevCommand": "bun run front:dev",
"beforeBuildCommand": "bun run front:build",
"frontendDist": "../dist",
"devUrl": "http://localhost:3000"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "gwaleen-desktop",
"mainBinaryName": "gwaleen-desktop",
"version": "0.0.0",
"identifier": "com.gwaleen.desktop",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "gwaleen-desktop",
"width": 800,
"height": 600,
"useHttpsScheme": true
}
]
}
}