Skip to content

Commit f678149

Browse files
committed
Fix: Correct health check endpoint routing
1 parent 878e4c8 commit f678149

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ app.use(express.static(path.join(__dirname, '../public')));
2222

2323
// API routes
2424
app.use('/api', apiRoutes);
25-
app.use('/health', healthRoutes);
25+
app.use('/api/health', healthRoutes);
2626

2727
// 404 handler
2828
// 404 handler

0 commit comments

Comments
 (0)