mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-23 21:55:30 +02:00
👔 Use a 404 status code if page not found (fixes #1136)
This commit is contained in:
parent
938222e1ef
commit
27995f8500
@ -122,8 +122,10 @@ const app = express()
|
|||||||
res.end(JSON.stringify({ success: false, message: e }));
|
res.end(JSON.stringify({ success: false, message: e }));
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// GET fallback endpoint
|
// If no other route is matched, serve up the index.html with a 404 status
|
||||||
.get('*', (req, res) => res.sendFile(path.join(__dirname, 'dist', 'index.html')));
|
.use((req, res) => {
|
||||||
|
res.status(404).sendFile(path.join(__dirname, 'dist', 'index.html'));
|
||||||
|
});
|
||||||
|
|
||||||
/* Create HTTP server from app on port, and print welcome message */
|
/* Create HTTP server from app on port, and print welcome message */
|
||||||
http.createServer(app)
|
http.createServer(app)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user