client/apps/tauri/src-tauri/tauri.conf.json
Alois 7dc68d1867
All checks were successful
/ build-web (push) Successful in 1m19s
/ build-desktop (linux) (push) Successful in 6m22s
/ build-mobile (push) Successful in 15m12s
/ release (push) Successful in 33s
(feat): improve dx for mobile app
2026-06-13 13:44:30 +02:00

51 lines
1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Tensamin",
"version": "0.0.0",
"mainBinaryName": "tensamin",
"identifier": "net.tensamin.client",
"build": {
"beforeDevCommand": "cd ../web && bun run dev && cd ../tauri",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "cd ../.. && bun run build:web && cd apps/tauri",
"frontendDist": "../../web/dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"decorations": false,
"title": "Tensamin",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"android": {
"debugApplicationIdSuffix": ".dev"
},
"active": true,
"targets": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"deep-link": {
"mobile": [
{
"scheme": ["tensamin"],
"appLink": false
}
]
}
}
}