This commit is contained in:
eggman20339 2025-01-15 16:58:20 -05:00
parent f7b15b2961
commit 00f6607e06

View File

@ -348,11 +348,11 @@ app.post('/admin/expire-timer', (req, res) => {
// -----------------------------
// SERVE REACT BUILD
// -----------------------------
app.use(express.static(path.join(__dirname, 'client', 'build')));
app.use(express.static(path.join(__dirname, 'build')));
// Catch-all to serve index.html for any unknown route
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'client', 'build', 'index.html'));
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
// Start server