| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "Enesis Editor",
- "version": "0.1.0",
- "identifier": "md.enesis.editor",
- "build": {
- "beforeDevCommand": "pnpm dev",
- "devUrl": "http://localhost:3000",
- "beforeBuildCommand": "pnpm generate",
- "frontendDist": "../.output/public"
- },
- "app": {
- "windows": [
- {
- "title": "Enesis Editor",
- "width": 1200,
- "height": 800
- }
- ],
- "security": {
- "csp": null
- }
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "resources": ["../Welcome.md"],
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/[email protected]",
- "icons/icon.icns",
- "icons/icon.ico"
- ]
- }
- }
|