{ "$schema": "https://schema.tauri.app/config/2", "productName": "AI Assistant", "version": "1.0.0", "identifier": "com.ai-assistant.desktop", "build": { "beforeDevCommand": "pnpm dev:vite", "devUrl": "http://localhost:5199", "beforeBuildCommand": "pnpm build:vite", "frontendDist": "../dist" }, "app": { "withGlobalTauri": true, "macOSPrivateApi": true, "windows": [ { "label": "main", "title": "AI Assistant", "width": 1200, "height": 800, "minWidth": 800, "minHeight": 600, "resizable": true, "fullscreen": false, "center": true }, { "label": "floating", "title": "", "url": "/floating.html", "width": 60, "height": 60, "minWidth": 60, "minHeight": 60, "resizable": false, "decorations": false, "transparent": true, "shadow": false, "alwaysOnTop": true, "visible": true, "skipTaskbar": true } ], "security": { "csp": "default-src 'self'; connect-src 'self' http://localhost:* ws://localhost:* http://127.0.0.1:* ws://127.0.0.1:*; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'" }, "trayIcon": { "iconPath": "icons/32x32.png", "iconAsTemplate": true } }, "bundle": { "active": true, "targets": "all", "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ], "macOS": { "minimumSystemVersion": "10.15" }, "windows": { "wix": null, "nsis": { "installMode": "currentUser" } } }, "plugins": {} }