wechat_ai/src-tauri/tauri.conf.json

55 lines
1.1 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "微信A助手",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../dist",
"devUrl": "http://127.0.0.1:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"title": "微信AI助手",
"width": 500,
"height": 900,
"minWidth": 500,
"minHeight": 900,
"decorations": false,
"transparent": true,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"$APPDATA/data/screenshots/**"
]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"externalBin": [
"../agent/agent"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"android": {
"debugApplicationIdSuffix": ".debug"
}
}
}