Change / to 404

This commit is contained in:
Christopher Cookman 2024-08-05 14:09:35 -06:00
parent 02bd76305f
commit 15975e68e6
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -12,7 +12,7 @@ app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.get("/", (req, res) => {
res.sendStatus(204);
res.sendStatus(404);
});
// Add your routes and middleware here