👔 Use a 404 status code if page not found (fixes #1136)

This commit is contained in:
Alicia Sykes 2024-02-28 11:57:25 +00:00
parent 938222e1ef
commit 27995f8500
1 changed files with 4 additions and 2 deletions

View File

@ -122,8 +122,10 @@ const app = express()
res.end(JSON.stringify({ success: false, message: e }));
}
})
// GET fallback endpoint
.get('*', (req, res) => res.sendFile(path.join(__dirname, 'dist', 'index.html')));
// If no other route is matched, serve up the index.html with a 404 status
.use((req, res) => {
res.status(404).sendFile(path.join(__dirname, 'dist', 'index.html'));
});
/* Create HTTP server from app on port, and print welcome message */
http.createServer(app)