Add patient management, deployment scripts, and Docker fixes

This commit is contained in:
2026-01-30 01:51:33 -08:00
parent 745f9f827f
commit d28d2f20c6
33 changed files with 7496 additions and 284 deletions

View File

@@ -4,4 +4,18 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
// Proxy API requests to Docker nginx (which proxies to API container)
'/api': {
target: 'http://localhost:80',
changeOrigin: true,
},
// Proxy file requests
'/files': {
target: 'http://localhost:80',
changeOrigin: true,
},
},
},
})