gleam-tauri-experiment/src-tauri/tauri.conf.json
Wesley Moore 3cd65e1094
Tweak tauri.conf.json
So that cargo tauri build works
2024-02-18 15:04:19 +10:00

37 lines
702 B
JSON

{
"app": {
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Video Please",
"width": 800
}
]
},
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173",
"frontendDist": "../dist"
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"targets": "all"
},
"identifier": "net.wezm.videopls",
"productName": "videopls",
"version": "0.1.0"
}