Add src-tauri/tauri.conf.json

This commit is contained in:
Zac Gaetano 2026-03-31 15:30:00 -04:00
parent 28674f6966
commit 04295b4841

70
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,70 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "Moonlight Relay",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"sidecar": true
}
},
"bundle": {
"active": true,
"category": "Utility",
"copyright": "",
"deb": { "depends": [] },
"externalBin": ["binaries/moonrelay"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "net.wilddragon.moonlight-relay",
"longDescription": "Self-hosted Parsec replacement — Moonlight + Tailscale + Apollo, all in one GUI.",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "Moonlight game streaming manager with built-in Tailscale VPN",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": { "active": false },
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Moonlight Relay",
"width": 800,
"minWidth": 480,
"minHeight": 400,
"decorations": false,
"transparent": false
}
]
}
}