SPB Git forge

spb/job-ka

Public
229commits 1branches 0releases
38.1 MBsize
maindefault branch
1 h agolast push
HTML 82.1% Python 14.6% TypeScript 1.9% CSS 1% JavaScript 0.5%
703 B · 24 lines typescript
Raw Blame History
1/**2 * =============================================================================3 * Job·Ka — Groupe KA4 * Auteur  : Simon-Pierre Boucher5 * Contact : contact@spboucher.ai6 * Fichier : frontend/vite.config.ts7 * Rôle    : Configuration Vite (proxy API en dev, build dans dist/)8 * Créé    : 2026-08-17   Modifié : 2026-08-179 * =============================================================================10 */11import react from "@vitejs/plugin-react";12import { defineConfig } from "vite";1314export default defineConfig({15  plugins: [react()],16  server: {17    proxy: {18      "/api": "http://localhost:8096",19      "/health": "http://localhost:8096",20    },21  },22  build: { outDir: "dist" },23});24