{ "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "GameDev Tracker", "version": "0.1.0", "identifier": "com.gamedevtracker.app", "build": { "frontendDist": "../dist", "devUrl": "http://localhost:5173", "beforeDevCommand": "npm run dev", "beforeBuildCommand": "npm run build" }, "app": { "windows": [ { "title": "GameDev Tracker", "width": 1280, "height": 820, "minWidth": 960, "minHeight": 600, "resizable": true, "fullscreen": false, "center": true, "backgroundColor": "#0f1117", "dragDropEnabled": false } ], "security": { "csp": "default-src 'self'; connect-src 'self' ipc: http://ipc.localhost https://*.supabase.co wss://*.supabase.co; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; script-src 'self'" } }, "bundle": { "active": true, "targets": "all", "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ] } }