ChatGPT-Next-Web/src-tauri/tauri.conf.json
2024-09-24 18:38:12 +08:00

41 lines
786 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "NextChat",
"identifier": "NextChat.template.dev",
"version": "0.1.0",
"build": {
"beforeBuildCommand": "yarn export",
"beforeDevCommand": "yarn export:dev",
"devUrl": "http://localhost:3000",
"frontendDist": "../out"
},
"plugins": {},
"app": {
"windows": [
{
"title": "quantum",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"withGlobalTauri": false
},
"bundle": {
"macOS": {
"signingIdentity": "-"
},
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}