| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "test",
- "version": "0.1.0",
- "identifier": "com.test.app",
- "build": {
- "beforeDevCommand": "yarn dev",
- "devUrl": "http://localhost:6547",
- "beforeBuildCommand": "yarn build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "title": "test",
- "center": true,
- "transparent": true,
- "decorations": false,
- "minWidth": 1300,
- "minHeight": 800
- }
- ],
- "security": {
- "csp": null
- },
- "macOSPrivateApi": true
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ]
- }
- }
|