deepshelf-api / frontend /vite.config.ts
nice-bill's picture
initial commit
cdb73a8
raw
history blame contribute delete
307 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
build: {
rollupOptions: {
output: {
manualChunks: {
vendor: ['react', 'react-dom'],
},
},
},
},
})