Fix stupid mistakes

master
Drew DeVault 2018-03-03 20:51:10 -05:00
parent f8adaed4a0
commit 1f66d9cb4f
1 changed files with 3 additions and 3 deletions

View File

@ -10,11 +10,11 @@ const env = process.env.ENVIRONMENT || "development";
module.exports = {
devtool: "source-map",
entry: [
'react-hot-loader/patch',
"webpack-hot-middleware/client",
(env !== "production" && "react-hot-loader/patch"),
(env !== "production" && "webpack-hot-middleware/client"),
"font-awesome-sass-loader!./font-awesome.config.js",
"./src/index.js"
],
].filter(f => f),
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),