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