{ "$schema": "https://schema.tauri.app/config/2", "productName": "thing", "version": "0.1.0", "identifier": "thing.lfeng.me", "build": { "beforeDevCommand": "bun run dev", "devUrl": "http://localhost:1420", "beforeBuildCommand": "bun run build", "frontendDist": "../dist" }, "app": { "windows": [ { "title": "Thing", "width": 1000, "height": 700, "decorations": false, "transparent": true, "visible": false, "windowEffects": { "effects": ["acrylic", "mica"] } } ], "security": { "csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: asset: http://asset.localhost; font-src 'self' data:; connect-src ipc: http://ipc.localhost; media-src 'self' data: blob:" } }, "bundle": { "active": true, "targets": "all", "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ], "resources": ["binaries/*", "resources/thing-extension/**/*"] } }