Merge pull request #116 from Bouncey/fix/styles

Fix/styles
This commit is contained in:
Quincy Larson
2018-05-30 17:08:21 -05:00
committed by Mrugesh Mohapatra
parent 7b0d951f68
commit 6aff2bbe42
9 changed files with 67 additions and 21 deletions

View File

@@ -139,11 +139,10 @@ exports.modifyWebpackConfig = ({ config, stage }) => {
config.plugin('DefinePlugin', webpack.DefinePlugin, [
{
HOME_PATH: JSON.stringify(
process.env.HOME_PATH ||
'http://localhost:3000'
process.env.HOME_PATH || 'http://localhost:3000'
)
}
]);
]);
});
};
/* eslint-disable prefer-object-spread/prefer-object-spread */