I have a problem when trying to redirect routes from node.js to react router.
app.get('*', (req,res) => {
res.sendFile(path.resolve(__dirname + '../client/build/index.html'));
});html
My browser says:
Error: ENOENT: no such file or directory, stat '/home/node/app../client/build/index.html'
Btw, what __dirname does?

app, before../client. As for__dirname, Google it.