app.get('*', (req, res) => {
const filePath = path.resolve(
__dirname,
'..',
'client',
'build',
'index.html'
);
res.sendFile(filePath);
});
app.get('*', (req, res) => {
const filePath = path.resolve(
__dirname,
'..',
'client',
'build',
'index.html'
);
res.sendFile(filePath);
});