feat: Use assistant UI for chat UI

This commit is contained in:
bracesproul
2025-02-26 17:09:16 -08:00
parent 7448b33075
commit c0cd027fde
19 changed files with 3112 additions and 726 deletions

View File

@@ -1,7 +1,13 @@
import path from "path"
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})