diff --git a/client/webpack.production.config.js b/client/webpack.production.config.js index 61c27fbda..8cc287be0 100644 --- a/client/webpack.production.config.js +++ b/client/webpack.production.config.js @@ -14,6 +14,8 @@ module.exports = { // fail on first error when building release bail: true, + cache: {}, + entry: { app: './app/scripts/main', 'terminal-app': './app/scripts/terminal-main' @@ -25,6 +27,9 @@ module.exports = { }, module: { + include: [ + path.resolve(__dirname, 'app/scripts') + ], preLoaders: [ { test: /\.js$/,