We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62f20f commit 7afe3d2Copy full SHA for 7afe3d2
client-src/modules/logger/index.js
@@ -1,6 +1,3 @@
1
'use strict';
2
3
-// eslint-disable-next-line import/no-extraneous-dependencies
4
-require('core-js/stable/symbol');
5
-
6
module.exports = require('webpack/lib/logging/runtime');
client-src/webpack.config.js
@@ -48,6 +48,10 @@ module.exports = [
48
],
49
},
50
plugins: [
51
+ new webpack.DefinePlugin({
52
+ Symbol:
53
+ '(typeof Symbol !== "undefined" ? Symbol : function (i) { return i; })',
54
+ }),
55
new webpack.NormalModuleReplacementPlugin(
56
/^tapable\/lib\/SyncBailHook/,
57
path.join(__dirname, 'modules/logger/SyncBailHookFake.js')
0 commit comments