Vendor Dashboard updated

This commit is contained in:
2026-04-09 14:14:57 +05:30
commit dd3e811cdf
113 changed files with 16725 additions and 0 deletions

17
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
secure: false,
}
}
}
})