Files
clickhouse-agx/src-tauri/tauri.conf.json
2025-05-22 17:59:44 +02:00

54 lines
1.0 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"frontendDist": "../build",
"devUrl": "http://localhost:1420"
},
"bundle": {
"macOS": {
"hardenedRuntime": true,
"minimumSystemVersion": "10.13"
},
"active": true,
"targets": "all",
"externalBin": [
"binaries/clickhouse"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "agx",
"mainBinaryName": "agx",
"version": "0.1.0",
"identifier": "app.agx",
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["agx"]
}
}
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "agx",
"width": 1250,
"height": 900,
"theme": "Dark",
"useHttpsScheme": true,
"backgroundColor": "#000000"
}
]
}
}