Skip to content

Commit

Permalink
build(vite): update proxy config
Browse files Browse the repository at this point in the history
add `/healt` entry point
  • Loading branch information
skamril committed Feb 1, 2024
1 parent 80aaf03 commit 3ebb826
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webapp/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ export default defineConfig(({ mode }) => {
port: 3000,
strictPort: true,
proxy: {
// Main API URLs
"/v1": SERVER_URL,
// Core API URLs
"/health": SERVER_URL,
"/version": SERVER_URL,
// WebSocket
"/ws": SERVER_URL,
},
},
Expand Down

0 comments on commit 3ebb826

Please sign in to comment.