Files
Heimgeist/src-tauri/tauri.conf.json
Victor Giers 81daab141c auto-git:
[add] docs/
 [add] src-tauri/
 [change] src/desktop/desktopApi.js
2026-05-06 04:56:36 +02:00

33 lines
661 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",
"beforeBuildCommand": "npm run build",
"devUrl": "http://127.0.0.1:5173",
"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"
}
}