Parking Finder
The Parking Finder system is a smart parking solution designed to help drivers efficiently locate available
Loading...
Searching...
No Matches
vite.config.js
1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
3
4export default defineConfig({
5 plugins: [react()],
6 server: {
7 proxy: {
8 '/video_feed': {
9 target: 'http://localhost:8000',
10 changeOrigin: true,
11 },
12 },
13 },
14})