2023-12-15 14:42:22 +04:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
import { defineConfig } from 'vite';
|
2023-12-01 16:11:45 +04:00
|
|
|
|
2023-12-15 14:42:22 +04:00
|
|
|
// https://vitejs.dev/config/
|
2023-12-01 16:11:45 +04:00
|
|
|
export default defineConfig({
|
2023-12-15 14:42:22 +04:00
|
|
|
plugins: [react()],
|
|
|
|
build: {
|
|
|
|
sourcemap: true,
|
|
|
|
chunkSizeWarningLimit: 1024,
|
|
|
|
emptyOutDir: true,
|
|
|
|
},
|
2023-12-01 16:11:45 +04:00
|
|
|
});
|