44 lines
849 B
JSON
44 lines
849 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "aiclient",
|
|
"version": "0.1.1",
|
|
"identifier": "com.aiclient.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [],
|
|
"security": {
|
|
"capabilities": [
|
|
"default"
|
|
],
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": [
|
|
"**"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"resources": [
|
|
"resources/**/*",
|
|
"binaries/*"
|
|
],
|
|
"active": true,
|
|
"targets": [],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|