mirror of
https://github.com/wassname/rag_search_cite.git
synced 2026-06-27 16:46:32 +08:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/rag_search_cite/',
|
|
build: {
|
|
sourcemap: true,
|
|
target: 'esnext',
|
|
}
|
|
})
|