Files
projet_gestion_commande/frontend-prep/vite.config.ts
T
2026-02-28 13:28:46 +01:00

18 lines
347 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
chunkSizeWarningLimit: 1000, // Augmenter la limite à 1000 KB
},
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
},
},
},
})