Files
haex-hub-mirror/src-tauri/tauri.conf.json
2025-05-22 06:55:53 +02:00

66 lines
1.3 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "haex-hub",
"version": "0.1.0",
"identifier": "space.haex.hub",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3003",
"beforeBuildCommand": "pnpm generate",
"frontendDist": "../.output/public"
},
"app": {
"windows": [
{
"title": "haex-hub",
"width": 800,
"height": 600
}
],
"security": {
"csp": {
"default-src": ["'self'", "ipc: http://ipc.localhost", "blob:"],
"media-src": [
"'self'",
"asset:",
"http://asset.localhost",
"blob:",
"asset: http://asset.localhost"
]
},
"assetProtocol": {
"enable": true,
"scope": ["*"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": {
"database/vault.db": "resources/vault.db"
},
"linux": {
"appimage": {
"bundleMediaFramework": false,
"files": {}
},
"deb": {
"files": {}
},
"rpm": {
"epoch": 0,
"files": {},
"release": "1"
}
}
}
}