lightrag / lightrag_webui /vite.config.ts
ArnoChen
update readme
5ff9ee8
raw
history blame
420 Bytes
import { defineConfig } from 'vite'
import path from 'path'
import react from '@vitejs/plugin-react-swc'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
base: './',
build: {
outDir: path.resolve(__dirname, '../lightrag/api/webui')
}
})