Files
WhispAssist/src-tauri/tauri.conf.json
T
2026-07-14 15:48:50 -05:00

40 lines
1022 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "WhispAssist",
"version": "0.6.0",
"identifier": "bet.dou.whispassist",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "WhispAssist",
"width": 1200,
"height": 800,
"minWidth": 880,
"minHeight": 600,
"resizable": true
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' http://localhost:* http://127.0.0.1:*; img-src 'self' data:; media-src 'self' http://waaudio.localhost; style-src 'self' 'unsafe-inline'"
},
"trayIcon": {
"iconPath": "icons/tray.png",
"tooltip": "WhispAssist"
}
},
"bundle": {
"active": true,
"targets": ["msi", "nsis"],
"icon": ["icons/icon.ico"],
"windows": {
"webviewInstallMode": { "type": "downloadBootstrapper" }
}
}
}