{ "$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json", "productName": "Meeting Recorder", "version": "1.0.0", "identifier": "com.meeting.recorder", "build": { "frontendDist": "../../frontend/dist", "devUrl": "http://localhost:3000", "beforeDevCommand": "cd ../frontend && npm run dev", "beforeBuildCommand": "cd ../frontend && npm run build" }, "app": { "windows": [ { "title": "智能会议记录系统", "width": 1200, "height": 800, "minWidth": 900, "minHeight": 600, "resizable": true, "fullscreen": false } ], "security": { "csp": null } }, "bundle": { "active": true, "targets": ["dmg", "app"], "externalBin": ["binaries/meeting-backend"], "resources": [], "macOS": { "minimumSystemVersion": "12.0", "infoPlist": "Info.plist" }, "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns" ] } }