mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-06-26 22:00:19 +00:00
16 lines
342 B
TypeScript
16 lines
342 B
TypeScript
![]() |
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: './'
|
||
|
})
|