PIbd-21_Makarov_DV_Internet.../vite.config.js

14 lines
314 B
JavaScript
Raw Permalink Normal View History

2024-01-10 22:31:36 +04:00
/* eslint-disable import/no-extraneous-dependencies */
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
2023-12-01 18:59:00 +04:00
2024-01-10 22:31:36 +04:00
// https://vitejs.dev/config/
2023-12-01 18:59:00 +04:00
export default defineConfig({
2024-01-10 22:31:36 +04:00
plugins: [react()],
build: {
sourcemap: true,
chunkSizeWarningLimit: 1024,
emptyOutDir: true,
},
2023-12-01 18:59:00 +04:00
});