Files
rehearsal-studio/src-tauri/tauri.conf.json
2026-06-09 14:20:20 +02:00

33 lines
837 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Rehearsal Studio",
"version": "0.1.0",
"identifier": "com.feka.rehearsalstudio",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devUrl": "http://localhost:1420",
"frontendDist": "../dist"
},
"app": {
"security": {
"csp": "default-src 'self' asset: http://asset.localhost blob: data:; media-src 'self' asset: http://asset.localhost blob: data:; img-src 'self' asset: http://asset.localhost blob: data:;"
},
"windows": [
{
"title": "Rehearsal Studio",
"width": 1560,
"height": 980,
"minWidth": 1160,
"minHeight": 820,
"resizable": true
}
]
},
"bundle": {
"active": true,
"targets": "all",
"icon": []
}
}