From 4a215fb74167675485df7d6d2fb1197a184cc461 Mon Sep 17 00:00:00 2001 From: Tim Dorr Date: Wed, 18 Apr 2018 12:29:11 -0400 Subject: [PATCH] Update mixed env message for Webpack 4 --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index bac914de17..efedbc4fed 100644 --- a/src/index.js +++ b/src/index.js @@ -18,10 +18,10 @@ if ( isCrushed.name !== 'isCrushed' ) { warning( - "You are currently using minified code outside of NODE_ENV === 'production'. " + + 'You are currently using minified code outside of NODE_ENV === "production". ' + 'This means that you are running a slower development build of Redux. ' + 'You can use loose-envify (https://github.com/zertosh/loose-envify) for browserify ' + - 'or DefinePlugin for webpack (http://stackoverflow.com/questions/30030031) ' + + 'or setting mode to production in webpack (https://webpack.js.org/concepts/mode/) ' + 'to ensure you have the correct code for your production build.' ) }