Fix sending fees to ord bug #54

Merged
bilal.catic merged 3 commits from fix-sending-fees-to-ORD-bug into master 2019-08-31 02:19:01 +02:00
Showing only changes of commit ec5d2abb66 - Show all commits

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'));
});
}