34 lines
683 B
JSON
34 lines
683 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Heimgeist",
|
|
"version": "0.1.0",
|
|
"identifier": "com.giers.heimgeist",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev:renderer:tauri",
|
|
"beforeBuildCommand": "npm run build",
|
|
"devUrl": "http://127.0.0.1:5174",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Heimgeist",
|
|
"width": 1000,
|
|
"height": 720,
|
|
"minWidth": 680,
|
|
"minHeight": 300
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"targets": "all",
|
|
"icon": []
|
|
}
|
|
}
|