{ "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Neptune Privacy", "version": "0.1.0", "identifier": "com.neptune.privacy", "build": { "frontendDist": "../dist", "devUrl": "http://localhost:5173", "beforeDevCommand": "pnpm dev", "beforeBuildCommand": "pnpm build" }, "app": { "windows": [ { "title": "Neptune Privacy", "width": 800, "height": 800, "minWidth": 375, "resizable": true, "fullscreen": false, "center": true } ], "security": { "csp": { "default-src": "'self' 'unsafe-inline'", "connect-src": "'self' https: wss: http://localhost:* ws://localhost:*", "script-src": "'self' 'unsafe-inline' 'unsafe-eval'", "style-src": "'self' 'unsafe-inline'", "img-src": "'self' data: https: http:", "font-src": "'self' data:", "worker-src": "'self' blob:" }, "dangerousDisableAssetCspModification": false, "freezePrototype": true }, "withGlobalTauri": false, "macOSPrivateApi": false }, "bundle": { "active": true, "targets": "all", "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ], "iOS": { "minimumSystemVersion": "13.0" }, "android": { "minSdkVersion": 24 } } }