Add fees bugfix / OAUTH2 api support

This commit is contained in:
Senad Uka
2019-09-02 07:15:37 +02:00
parent b3e2de9f57
commit 2e244d7bb7
3 changed files with 5 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ app.use(express.static(path.join(__dirname, 'client/build')));
//production mode
if(process.env.NODE_ENV === 'production') {
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname = 'client/build/index.html'));
res.sendfile(path.join(__dirname = 'client/build/index.html'));
});
}