Files
openconcho/packages/desktop/src-tauri/tauri.conf.json
batumilove 5cfbae6248 fix: harden token and URL handling
* fix: harden token and URL handling

* test: restore full web test suite

---------

Co-authored-by: batumilove <batumilove@users.noreply.github.com>
2026-05-28 13:54:48 -05:00

45 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2.json",
"productName": "OpenConcho",
"identifier": "com.offendingcommit.openconcho",
"build": {
"frontendDist": "../../web/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "pnpm turbo --filter @openconcho/web dev",
"beforeBuildCommand": "pnpm turbo --filter @openconcho/web build"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"app": {
"windows": [
{
"title": "OpenConcho",
"width": 1280,
"height": 800,
"minWidth": 800,
"minHeight": 600
}
],
"security": {
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' http://localhost:* http://127.0.0.1:* https:; object-src 'none'; base-uri 'none'; frame-ancestors 'none'"
}
},
"plugins": {
"deep-link": {
"mobile": [],
"desktop": {
"schemes": ["openconcho"]
}
}
}
}