20 lines
357 B
JavaScript
20 lines
357 B
JavaScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
server: {
|
||
|
|
host: true,
|
||
|
|
port: 3000
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
outDir: 'dist',
|
||
|
|
assetsDir: 'assets',
|
||
|
|
rollupOptions: {
|
||
|
|
output: {
|
||
|
|
manualChunks: undefined,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|