first commit

This commit is contained in:
AnuragJangid18 2026-03-30 17:24:23 +05:30
commit 44995cb5db
60 changed files with 5472 additions and 0 deletions

16
vite.config.js Normal file
View file

@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://192.168.1.27:8000',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
})