Skip to content

Commit

Permalink
new features
Browse files Browse the repository at this point in the history
  • Loading branch information
ogeobubu committed Oct 22, 2024
1 parent 036303c commit f600bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ app.use('/uploads', express.static('uploads'));
app.use(express.static(path.join(__dirname, 'client', 'dist')));

app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'client', 'dist', 'index.html'));
res.sendFile(path.join(__dirname, 'client', 'index.html'));
});

export default app;

0 comments on commit f600bc5

Please sign in to comment.