Files
proxycast/src-tauri/tauri.conf.json
T
2026-04-02 20:36:21 +08:00

90 lines
2.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Lime",
"version": "1.1.0",
"identifier": "com.lime.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://127.0.0.1:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Lime",
"width": 1200,
"height": 800,
"minWidth": 1000,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"maximized": false,
"visible": false,
"center": true
},
{
"label": "smart-input",
"title": "",
"url": "/smart-input",
"width": 500,
"height": 70,
"resizable": false,
"decorations": false,
"alwaysOnTop": true,
"center": true,
"visible": false,
"focus": true,
"skipTaskbar": true,
"transparent": true,
"shadow": false
}
],
"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/**/*",
"resources/site-adapters/**/*",
"../extensions/lime-chrome/**/*"
],
"macOS": {
"entitlements": "entitlements.plist",
"exceptionDomain": null,
"frameworks": [],
"providerShortName": null,
"signingIdentity": "-",
"minimumSystemVersion": "10.15"
}
},
"plugins": {
"shell": {
"open": true
},
"updater": {
"pubkey": "lime-dev-placeholder"
},
"deep-link": {
"desktop": {
"schemes": ["lime"]
}
}
}
}