1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "build": {
- "beforeBuildCommand": "yarn build:tauri",
- "beforeDevCommand": "yarn dev:tauri",
- "devPath": "http://localhost:5173",
- "distDir": "../../build"
- },
- "package": {
- "productName": "app",
- "version": "0.1.0"
- },
- "tauri": {
- "allowlist": {
- "all": false
- },
- "bundle": {
- "active": true,
- "category": "DeveloperTool",
- "copyright": "",
- "deb": {
- "depends": []
- },
- "externalBin": [],
- "icon": [
- "../../../.icons/32x32.png",
- "../../../.icons/128x128.png",
- "../../../.icons/128x128@2x.png",
- "../../../.icons/icon.icns",
- "../../../.icons/icon.ico"
- ],
- "identifier": "com.tauri.app",
- "longDescription": "",
- "macOS": {
- "entitlements": null,
- "exceptionDomain": "",
- "frameworks": [],
- "providerShortName": null,
- "signingIdentity": null
- },
- "resources": [],
- "shortDescription": "",
- "targets": "all",
- "windows": {
- "certificateThumbprint": null,
- "digestAlgorithm": "sha256",
- "timestampUrl": ""
- }
- },
- "security": {
- "csp": null
- },
- "updater": {
- "active": false
- },
- "windows": [
- {
- "fullscreen": false,
- "height": 600,
- "resizable": true,
- "title": "Tauri Example",
- "width": 800
- }
- ]
- }
- }
|