1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "$schema": "https://schema.tauri.app/config/2.0.0-rc",
- "productName": "tauri-qwen",
- "version": "0.1.0",
- "identifier": "com.litongjava.tauri.qwen",
- "build": {
- "frontendDist": "dist",
- "devUrl": "https://chat.qwenlm.ai/"
- },
- "app": {
- "windows": [
- {
- "title": "Tauri qwen",
- "fullscreen": false,
- "resizable": true,
- "height": 1000,
- "width": 1500,
- "url": "https://chat.qwenlm.ai/",
- "x": 100,
- "y": 0
- }
- ],
- "security": {
- "csp": null
- }
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ]
- }
- }
|