From efc011d7da7d6fd685f477f5105de6736d2b9b42 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Thu, 6 Jun 2019 04:09:19 +0200 Subject: [PATCH] Don't redefine `process` variable --- lib/core/src/server/manager/manager-webpack.config.js | 2 +- lib/core/src/server/preview/iframe-webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/src/server/manager/manager-webpack.config.js b/lib/core/src/server/manager/manager-webpack.config.js index f51bfe861d3..06d869c30b6 100644 --- a/lib/core/src/server/manager/manager-webpack.config.js +++ b/lib/core/src/server/manager/manager-webpack.config.js @@ -59,7 +59,7 @@ export default ({ configDir, configType, entries, dll, outputDir, cache, babelOp new Dotenv({ silent: true }), // graphql sources check process variable new DefinePlugin({ - process: { browser: true, env: stringified }, + 'process.env': stringified, NODE_ENV: JSON.stringify(process.env.NODE_ENV), }), // See https://github.com/graphql/graphql-language-service/issues/111#issuecomment-306723400 diff --git a/lib/core/src/server/preview/iframe-webpack.config.js b/lib/core/src/server/preview/iframe-webpack.config.js index cd801cc4c0c..8cba134f720 100644 --- a/lib/core/src/server/preview/iframe-webpack.config.js +++ b/lib/core/src/server/preview/iframe-webpack.config.js @@ -59,7 +59,7 @@ export default ({ template: require.resolve(`../templates/index.ejs`), }), new DefinePlugin({ - process: { browser: true, env: stringified }, + 'process.env': stringified, NODE_ENV: JSON.stringify(process.env.NODE_ENV), }), isProd ? null : new WatchMissingNodeModulesPlugin(nodeModulesPaths),