vite.config.js 276 B

123456789101112131415
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. export default defineConfig({
  4. plugins: [react()],
  5. server: {
  6. port: 3000,
  7. proxy: {
  8. '/api': {
  9. target: 'http://localhost:3001',
  10. changeOrigin: true
  11. }
  12. }
  13. }
  14. })