{
"$schema": "https://schema.tauri.app/config/2",
"productName": "sqlitevector",
"version": "0.1.1",
"identifier": "com.sqlitevector.app",
"build": {
"frontendDist": "../frontend",
"beforeDevCommand": "",
"beforeBuildCommand": ""
},
"app": {
"windows": [
{
"title": "SQLite Vector",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"visible": true
}
],
"withGlobalTauri": true,
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"externalBin": ["../../bin/llama-server"],
"resources": ["resources/**/*", "*.dll"],
"icon": [
"../../resources/icons/32x32.png",
"../../resources/icons/128x128.png",
"../../resources/icons/128x128@2x.png",
"../../resources/icons/icon.icns",
"../../resources/icons/icon.ico"
]
}
}