IELET3109-desktop-application/src-tauri/tauri.conf.json

38 lines
673 B
JSON
Raw Permalink Normal View History

2024-09-19 11:00:37 +00:00
{
2024-11-23 20:00:35 +00:00
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm 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": "tauri-eval",
"mainBinaryName": "tauri-eval",
"version": "0.1.0",
"identifier": "com.tauri-eval.app",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "IELET3109 Heart Rate Monitor",
"width": 800,
"height": 600,
"useHttpsScheme": true
}
]
}
}