Files
resona/src-tauri/tauri.conf.json
2025-12-31 18:41:26 -08:00

41 lines
837 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "resona",
"version": "1.0.0",
"identifier": "com.resona.app",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "resona",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["deb", "rpm", "nsis", "msi", "app", "dmg"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"signingIdentity": null,
"providerShortName": null,
"entitlements": null
}
}
}