Files
yaoayanui/src-tauri/tauri.conf.json
fengchuanhn@gmail.com 3b0a8d777c 11
2026-05-21 00:19:08 +08:00

49 lines
984 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "aiclient",
"version": "0.1.0",
"identifier": "com.aiclient.desktop",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "aiclient",
"width": 800,
"height": 600,
"maximized": true,
"decorations": false,
"resizable": true
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
}
},
"bundle": {
"resources": [
"resources/**/*",
"binaries/*"
],
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}