vite.config.ts 310 B

12345678910111213141516
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. export default defineConfig({
  4. plugins: [react()],
  5. server: {
  6. host: "0.0.0.0",
  7. port: 5173,
  8. proxy: {
  9. "/demand/api/v1": {
  10. target: "http://localhost:8000",
  11. changeOrigin: true
  12. }
  13. }
  14. }
  15. });