WIP push-to-talk Letta chat frontend
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 605 B view raw
1{ 2 "$schema": "https://schema.tauri.app/config/2", 3 "productName": "miwiwi", 4 "version": "0.1.0", 5 "identifier": "systems.graham.miwiwi", 6 "build": { 7 "beforeDevCommand": "deno task dev", 8 "devUrl": "http://localhost:1420", 9 "beforeBuildCommand": "deno task build", 10 "frontendDist": "../build" 11 }, 12 "app": { 13 "windows": [], 14 "security": { 15 "csp": null 16 } 17 }, 18 "bundle": { 19 "active": true, 20 "targets": "all", 21 "icon": [ 22 "icons/32x32.png", 23 "icons/128x128.png", 24 "icons/128x128@2x.png", 25 "icons/icon.icns", 26 "icons/icon.ico" 27 ] 28 } 29}