diff --git a/Example/webpack.config.js b/Example/webpack.config.js index 562e0848..22f85cee 100644 --- a/Example/webpack.config.js +++ b/Example/webpack.config.js @@ -53,5 +53,10 @@ module.exports = { '.jsx', ], }, - plugins: [new (require('webpack').DefinePlugin)({process: {env: {}}})], + plugins: [ + new (require('webpack').DefinePlugin)({ + process: {env: {}}, + __DEV__: 'true', + }), + ], };