supermemory/apps/desktop/src-tauri/tauri.conf.json
2026-06-22 18:06:20 -07:00

48 lines
890 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Supermemory",
"version": "0.1.0",
"identifier": "ai.supermemory.desktop",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:3003",
"beforeBuildCommand": "bun run build",
"frontendDist": "../out"
},
"app": {
"windows": [
{
"label": "main",
"title": "Supermemory",
"width": 1100,
"height": 720,
"minWidth": 720,
"minHeight": 480,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["app", "dmg"],
"externalBin": ["binaries/smfs"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["supermemory"]
}
}
}
}