tauri.conf.json (1241B)
1 { 2 "$schema": "https://schema.tauri.app/config/2", 3 "productName": "iuna", 4 "version": "0.3.2", 5 "identifier": "labs.iuna.desktop", 6 "build": { 7 "beforeDevCommand": "", 8 "beforeBuildCommand": "", 9 "frontendDist": "../desktop" 10 }, 11 "app": { 12 "withGlobalTauri": true, 13 "windows": [ 14 { 15 "title": "iuna", 16 "width": 1180, 17 "height": 820, 18 "minWidth": 860, 19 "minHeight": 640, 20 "url": "index.html" 21 } 22 ], 23 "security": { 24 "csp": "default-src 'self'; connect-src http://127.0.0.1:18661; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'" 25 } 26 }, 27 "bundle": { 28 "active": true, 29 "targets": "all", 30 "externalBin": [ 31 "binaries/iuna-sidecar" 32 ], 33 "icon": [ 34 "icons/32x32.png", 35 "icons/128x128.png", 36 "icons/128x128@2x.png", 37 "icons/icon.icns", 38 "icons/icon.ico" 39 ], 40 "category": "DeveloperTool", 41 "shortDescription": "Local iuna devnet node", 42 "longDescription": "Runs a local iuna devnet node and opens its management UI.", 43 "windows": { 44 "webviewInstallMode": { 45 "type": "downloadBootstrapper" 46 } 47 }, 48 "macOS": { 49 "minimumSystemVersion": "11.0" 50 } 51 } 52 }