vite.config.ts 302 B

123456789101112131415
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. // https://vite.dev/config/
  4. export default defineConfig({
  5. base: "/pcd-v2026/",
  6. server: {
  7. host: "127.0.0.1",
  8. port: 4000,
  9. proxy: {
  10. "/api": "http://127.0.0.1:8000",
  11. },
  12. },
  13. plugins: [react()],
  14. });