{ "$schema": "https://schema.tauri.app/config/2", "productName": "NoteFlow", "version": "0.1.0", "identifier": "com.noteflow.desktop", "build": { "frontendDist": "../dist" }, "app": { "windows": [ { "label": "main", "title": "NoteFlow", "width": 1024, "height": 768, "minWidth": 800, "minHeight": 600, "resizable": true, "fullscreen": false, "center": true } ], "security": { "csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com", "capabilities": ["default"] } }, "bundle": { "active": true, "targets": "all", "icon": ["icons/icon.png", "icons/icon.ico"], "linux": { "appimage": { "bundleMediaFramework": true }, "deb": { "depends": ["libasound2", "libportaudio2"] } } }, "plugins": { "shell": { "open": true }, "fs": {}, "deep-link": { "desktop": { "schemes": ["noteflow"] } } } }