| 1 | { |
| 2 | "$schema": "https://schema.tauri.app/config/2", |
| 3 | "productName": "StreetCut", |
| 4 | "version": "1.0.0", |
| 5 | "identifier": "xyz.smbcloud.streetcut", |
| 6 | "build": { |
| 7 | "beforeDevCommand": "pnpm dev", |
| 8 | "devUrl": "http://localhost:1420", |
| 9 | "beforeBuildCommand": "pnpm build", |
| 10 | "frontendDist": "../dist" |
| 11 | }, |
| 12 | "app": { |
| 13 | "windows": [ |
| 14 | { |
| 15 | "title": "StreetCut", |
| 16 | "width": 800, |
| 17 | "height": 600 |
| 18 | } |
| 19 | ], |
| 20 | "security": { |
| 21 | "csp": null |
| 22 | } |
| 23 | }, |
| 24 | "bundle": { |
| 25 | "active": true, |
| 26 | "targets": "all", |
| 27 | "icon": [ |
| 28 | "icons/32x32.png", |
| 29 | "icons/128x128.png", |
| 30 | "icons/128x128@2x.png", |
| 31 | "icons/icon.icns", |
| 32 | "icons/icon.ico" |
| 33 | ], |
| 34 | "android": { |
| 35 | "minSdkVersion": 24, |
| 36 | "versionCode": 1 |
| 37 | }, |
| 38 | "iOS": { |
| 39 | "developmentTeam": "2TQF86ZACD", |
| 40 | "minimumSystemVersion": "14.0" |
| 41 | } |
| 42 | } |
| 43 | } |