Skip to content

Commit a302707

Browse files
committed
Test Vercel
1 parent e7e0aed commit a302707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ app.get('/', (req, res) => {
1818
res.redirect(config.APP_URL);
1919
return;
2020
}
21-
res.sendStatus(200);
21+
res.status(200).send({ status: 'OK' });
2222
});
2323

2424
app.get('/info', async (req, res) => {

0 commit comments

Comments
 (0)