Files
SonicForgeStudio/src-tauri/tauri.conf.json

38 lines
770 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "SonicForgeDAW",
"version": "1.0.0",
"identifier": "com.sonicforge.daw",
"build": {
"frontendDist": "../app/templates",
"devUrl": "http://localhost:8000"
},
"app": {
"windows": [
{
"title": "Sonic Forge DAW - Professional Desktop Studio",
"url": "http://localhost:8000",
"width": 1440,
"height": 900,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["nsis", "msi"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/icon.ico"
],
"externalBin": [
"binaries/daw_engine"
]
}
}