From 52c8516a1e3a8120b745f58dff99339dfd4a7be8 Mon Sep 17 00:00:00 2001 From: Kfir Dayan Date: Mon, 3 Apr 2023 20:06:02 +0300 Subject: [PATCH] changed the 404 msg --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 56e6903..6bc650a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -63,5 +63,5 @@ webServer.listen(process.env.PORT, () => { }) webServer.use(function (req, res, next) { - res.status(404).send("Sorry can't find that!") + res.status(404).send("This is not the page you are looking for...") }) \ No newline at end of file