Deploy Bot
Deploy SciANN Material Identification app (Django + React + Vite)
7ba882a
raw
history blame contribute delete
205 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: './',
build: {
outDir: 'dist',
emptyOutDir: true,
},
})