{ "$schema": "https://schema.tauri.app/config/2", "productName": "TalkEdit", "version": "0.1.0", "identifier": "com.talkedit.app", "build": { "frontendDist": "../frontend/dist", "devUrl": "http://localhost:5173", "beforeDevCommand": "cd frontend && npm run dev", "beforeBuildCommand": "cd frontend && npm run build" }, "app": { "windows": [ { "label": "main", "title": "TalkEdit", "width": 1400, "height": 900, "minWidth": 1024, "minHeight": 700, "resizable": true, "fullscreen": false } ], "security": { "csp": "default-src 'self'; connect-src 'self' http://127.0.0.1:8000; media-src 'self' http://127.0.0.1:8000; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-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" ] } }