Deployables / frontend /vite.config.js
skander101's picture
feat: replace Jinja2 template with React SPA (Vite + React 18)
7232589
Raw
History Blame Contribute Delete
182 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: '/',
build: {
outDir: 'dist',
},
})