Web-programming_Anisin_R.S..../vite.config.js

13 lines
256 B
JavaScript
Raw Permalink Normal View History

2024-01-10 20:53:28 +04:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2024-01-10 20:41:47 +04:00
2024-01-10 20:53:28 +04:00
// https://vitejs.dev/config/
2024-01-10 20:41:47 +04:00
export default defineConfig({
2024-01-10 20:53:28 +04:00
plugins: [react()],
build: {
sourcemap: true,
chunkSizeWarningLimit: 1024,
emptyOutDir: true,
},
})