Files
projet_gestion_commande/frontend-prep/vite.config.ts
T
2026-03-03 23:42:23 +01:00

18 lines
401 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: "https://uber-stup.club",
changeOrigin: true,
},
},
},
});