Files
proxycast/src-tauri/tauri.conf.headless.json
T
2026-04-17 10:12:42 +08:00

72 lines
1.7 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Lime",
"version": "1.12.3",
"identifier": "com.limecloud.lime",
"build": {
"beforeDevCommand": "npm run dev:web-bridge",
"devUrl": "http://127.0.0.1:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Lime",
"visible": false,
"width": 1200,
"height": 800,
"minWidth": 1000,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true
}
],
"security": {
"csp": "default-src 'self' tauri:; img-src 'self' asset: tauri: data: https: blob:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; connect-src 'self' tauri: http://localhost:* ws://localhost:* http://127.0.0.1:* ws://127.0.0.1:* http://[::1]:* ws://[::1]:* https:; frame-src https: http:; object-src 'none'"
},
"macOSPrivateApi": true
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"icons/tray/*",
"../scripts/playwright-login/**/*",
"resources/models/**/*"
],
"macOS": {
"entitlements": null,
"exceptionDomain": null,
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
}
},
"plugins": {
"shell": {
"open": true
},
"updater": {
"pubkey": "lime-dev-placeholder"
},
"deep-link": {
"desktop": {
"schemes": [
"lime"
]
}
}
}
}