Files
Heimgeist/src-tauri/tauri.conf.json

38 lines
792 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:5174",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "Heimgeist",
"width": 1000,
"height": 720,
"minWidth": 680,
"minHeight": 300
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["app"],
"icon": ["icons/icon.png"],
"externalBin": [
"binaries/heimgeist-backend",
"binaries/heimgeist-ffmpeg"
]
}
}