1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "盼达点餐",
- "version": "0.1.1",
- "identifier": "com.qihuan.store-app",
- "build": {
- "beforeDevCommand": "pnpm dev",
- "devUrl": "http://localhost:1420",
- "beforeBuildCommand": "pnpm build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "title": "盼达点餐",
- "width": 1422,
- "height": 800
- }
- ],
- "security": {
- "csp": null
- }
- },
- "bundle": {
- "windows": {
- "wix": {
- "language": "zh-CN"
- }
- },
- "active": true,
- "targets": "all",
- "resources": ["resources/*"],
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ]
- }
- }
|