vite.config.js 324 B

1234567891011121314
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. // https://vite.dev/config/
  4. export default defineConfig({
  5. plugins: [react()],
  6. server: {
  7. proxy: {
  8. '/auth': 'http://localhost:5000',
  9. '/restaurants': 'http://localhost:5000',
  10. '/admin': 'http://localhost:5000',
  11. }
  12. }
  13. })