Files
Resonant/src-tauri/tauri.conf.json
T
cyph3rasi 73c4eb1857 Load newest albums and complete song pages, add a Songs view, bundle FFmpeg, persist credentials securely, and serve the managed library on the LAN
Hop-State: A_06FNEJ4B52YWW6V4DQKVHXR
Hop-Proposal: R_06FNEJ37KHGP1VCKVNTV95R
Hop-Task: T_06FNEEBRXR47KT7H71N5H68
Hop-Attempt: AT_06FNEEBRXS5YEZ0KZ4MTDZG
2026-07-12 10:03:19 -07:00

39 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Resonant",
"version": "0.1.0",
"identifier": "xyz.gnosyslabs.resonant",
"build": {
"beforeDevCommand": "npm run sidecar:prepare && npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run sidecar:prepare && npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Resonant",
"width": 1280,
"height": 820,
"minWidth": 760,
"minHeight": 600,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' http: https:; img-src 'self' asset: http: https: data: blob:; media-src 'self' http: https: blob:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com data:"
}
},
"bundle": {
"active": true,
"targets": "all",
"externalBin": ["binaries/navidrome", "binaries/ffmpeg"],
"resources": [
"resources/navidrome-LICENSE",
"resources/ffmpeg-LICENSE",
"resources/ffmpeg-README"
]
}
}