mirror of
https://github.com/sern-handler/gui
synced 2026-06-06 01:16:54 +00:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: './build'
|
|
},
|
|
base: ''
|
|
})
|