2023-12-01 11:17:36 +04:00
|
|
|
import { defineConfig } from 'vite'
|
2023-12-18 21:05:53 +04:00
|
|
|
import react from '@vitejs/plugin-react'
|
2023-12-01 11:17:36 +04:00
|
|
|
|
2023-12-18 21:05:53 +04:00
|
|
|
// https://vitejs.dev/config/
|
2023-12-01 11:17:36 +04:00
|
|
|
export default defineConfig({
|
2023-12-18 21:05:53 +04:00
|
|
|
plugins: [react()],
|
|
|
|
build: {
|
|
|
|
sourcemap: true,
|
|
|
|
chunkSizeWarningLimit: 1024,
|
|
|
|
emptyOutDir: true,
|
|
|
|
},
|
|
|
|
})
|