| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "Control",
- "version": "0.1.0",
- "identifier": "com.control.app",
- "build": {
- "beforeDevCommand": "yarn dev",
- "devUrl": "http://localhost:6555",
- "beforeBuildCommand": "yarn build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "center": true,
- "transparent": true,
- "decorations": false,
- "minWidth": 1200,
- "minHeight": 760,
- "shadow": false,
- "devtools": true
- }
- ],
- "security": {
- "csp": {
- "default-src": "'self' customprotocol: asset:",
- "connect-src": "ipc: http://ipc.localhost",
- "font-src": ["https://fonts.gstatic.com"],
- "img-src": "'self' asset: http://asset.localhost blob: data:",
- "style-src": "'unsafe-inline' 'self' https://fonts.googleapis.com",
- "media-src":"'self'"
- }
- },
- "macOSPrivateApi": true
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ]
- }
- }
|