Files
brittle/src-tauri/tauri.conf.json
2026-04-03 18:45:08 +02:00

40 lines
813 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Brittle",
"version": "0.1.0",
"identifier": "dev.brittle.app",
"build": {
"beforeDevCommand": {
"script": "sh scripts/dev.sh",
"cwd": ".."
},
"beforeBuildCommand": {
"script": "npm --prefix src-tauri/assets/viewer-src run build && trunk build --release",
"cwd": ".."
},
"devUrl": "http://localhost:1420",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "Brittle",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": []
}
}