| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "auto-record",
- "version": "0.1.0",
- "identifier": "com.ewaga.autorecord",
- "build": {
- "beforeDevCommand": "pnpm dev",
- "devUrl": "http://localhost:1420",
- "beforeBuildCommand": "pnpm build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "title": "auto-record",
- "width": 1464,
- "height": 780,
- "decorations": false,
- "maximizable": false,
- "minimizable": true,
- "closable": true,
- "resizable": false
- }
- ],
- "withGlobalTauri": true,
- "security": {
- "csp": null,
- "assetProtocol": {
- "enable": true,
- "scope": [
- "$APPDATA/**"
- ]
- }
- }
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "resources": [
- "resources/ffmpeg/*"
- ]
- }
- }
|