| { |
| "$schema": "https://schema.tauri.app/config/2", |
| "productName": "词典", |
| "version": "0.1.0", |
| "identifier": "cn.mdict.mdict-app", |
| "build": { |
| "beforeDevCommand": "yarn dev", |
| "devUrl": "http://localhost:1420", |
| "beforeBuildCommand": "yarn build", |
| "frontendDist": "../dist" |
| }, |
| "app": { |
| "windows": [ |
| { |
| "title": "词典", |
| "width": 1200, |
| "height": 800, |
| "minWidth": 800, |
| "minHeight": 600, |
| "resizable": true, |
| "fullscreen": false |
| } |
| ], |
| "security": { |
| "csp": null, |
| "assetProtocol": { |
| "enable": true, |
| "scope": ["**"] |
| } |
| } |
| }, |
| "bundle": { |
| "active": true, |
| "targets": "all", |
| "resources": [], |
| "icon": [ |
| "icons/32x32.png", |
| "icons/128x128.png", |
| "icons/128x128@2x.png", |
| "icons/icon.icns", |
| "icons/icon.ico" |
| ] |
| } |
| } |
|
|