2024-10-24 22:23:41 +05:30
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
|
|
|
|
|
|
export default defineConfig(() => {
|
|
|
|
|
return {
|
|
|
|
|
build: {
|
|
|
|
|
outDir: 'build',
|
2024-10-29 21:05:10 +05:30
|
|
|
manifest: true,
|
2024-10-29 23:41:49 +05:30
|
|
|
chunkSizeWarningLimit: 1024,
|
2024-10-24 22:23:41 +05:30
|
|
|
},
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
};
|
|
|
|
|
});
|