From 92e836ff162611923fb6d25593003f31ed75897a Mon Sep 17 00:00:00 2001 From: blumh <hermann.blum@mavt.ethz.ch> Date: Fri, 4 May 2018 09:38:07 +0200 Subject: [PATCH] fix copy-paste error from networkConfig overwrite in production was still the version from the webpage --- webpack.config.prod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.prod.js b/webpack.config.prod.js index 2f2029f..84ab673 100644 --- a/webpack.config.prod.js +++ b/webpack.config.prod.js @@ -22,7 +22,7 @@ config.plugins = [ ]; // Replace development with production config -config.resolve.alias.config = `${__dirname}/config.${process.env.BUILD_CONFIG_POSTFIX}.js`; +config.resolve.alias.networkConfig = `${__dirname}/src/networkConfig.${process.env.BUILD_CONFIG_POSTFIX}.js`; module.exports = config; -- GitLab