Files
WhispAssist/src-tauri/tauri.conf.json
T
2026-07-15 18:09:07 -05:00

40 lines
1023 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "WhispAssist",
"version": "0.7.2",
"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'"
}
},
"bundle": {
"active": true,
"targets": ["msi", "nsis"],
"icon": ["icons/icon.ico"],
"resources": ["wa-defaults.ini"],
"windows": {
"webviewInstallMode": { "type": "downloadBootstrapper" },
"nsis": {
"installMode": "both"
}
}
}
}