📦 EqualifyEverything / scan-demo.equalify.app

📄 vite.config.ts · 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vite.dev/config/
export default defineConfig({
  plugins: [react()],
  server: {
    proxy: {
      '/api': {
        target: 'https://scan-dev.equalify.app',  // Replace with your backend API URL
        changeOrigin: true,
        secure: false,
        rewrite: (path) => path.replace(/^\/api/, '') // Optional: Remove the /api prefix
      }
    }
  }
})