Newer
Older
TelosDB / src / backend / tauri.conf.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 7 days ago 946 bytes chore: release v0.1.1
{
  "$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/*"
    ],
    "icon": [
      "../../resources/icons/32x32.png",
      "../../resources/icons/128x128.png",
      "../../resources/icons/128x128@2x.png",
      "../../resources/icons/icon.icns",
      "../../resources/icons/icon.ico"
    ]
  }
}