39 lines
786 B
JSON
39 lines
786 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "ZeaVis Edu",
|
|
"version": "0.1.0",
|
|
"identifier": "com.zeavis.edu",
|
|
"build": {
|
|
"frontendDist": "../web/dist",
|
|
"devUrl": "http://localhost:5173",
|
|
"beforeBuildCommand": "cd ../web && bun run build",
|
|
"beforeDevCommand": "cd ../web && bun run dev"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"title": "ZeaVis Edu",
|
|
"width": 800,
|
|
"height": 600
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all"
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"mobile": [
|
|
{
|
|
"scheme": ["zeavisedu"]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|