Fix TypeScript unused variable errors
This commit is contained in:
@@ -64,7 +64,7 @@ if (isProduction) {
|
||||
app.use(express.static(clientPath));
|
||||
|
||||
// SPA fallback
|
||||
app.get('*', (req, res) => {
|
||||
app.get('*', (_req, res) => {
|
||||
res.sendFile(path.join(clientPath, 'index.html'));
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user