diff options
Diffstat (limited to 'vnext/server')
-rw-r--r-- | vnext/server/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/server/webpack.config.js b/vnext/server/webpack.config.js index a58f858c..364f4414 100644 --- a/vnext/server/webpack.config.js +++ b/vnext/server/webpack.config.js @@ -3,7 +3,7 @@ const ESLintPlugin = require('eslint-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin'); -module.exports = (env, argv) => { +module.exports = () => { const node_env = process.env.NODE_ENV ? process.env.NODE_ENV : 'development'; const dev = node_env !== 'production'; const config = { |