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

37 lines
729 B
JSON
Raw Normal View History

2024-09-19 11:00:37 +00:00
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
2024-11-18 13:41:44 +00:00
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
2024-09-19 11:00:37 +00:00
},
2024-11-18 13:41:44 +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-09-19 11:00:37 +00:00
},
2024-11-18 13:41:44 +00:00
"productName": "tauri-eval",
"mainBinaryName": "tauri-eval",
"version": "0.1.0",
"identifier": "com.tauri-eval.app",
"plugins": {},
"app": {
"security": {
"csp": null
2024-09-19 11:00:37 +00:00
},
"windows": [
{
"title": "tauri-eval",
"width": 800,
2024-11-18 13:41:44 +00:00
"height": 600,
"useHttpsScheme": true
2024-09-19 11:00:37 +00:00
}
2024-11-18 13:41:44 +00:00
]
2024-09-19 11:00:37 +00:00
}
2024-11-18 13:41:44 +00:00
}