diff options
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index c4fa2913..a9329712 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,7 +19,11 @@ module.exports = (env, argv) => { module: { rules: [{ test: /\.js$/, - exclude: /@babel(?:\/|\\{1,2})runtime|core-js/, + exclude: [ + /\bnode_modules\b/, + /\bcore-js\b/, + /\bwebpack\/buildin\b/ + ], loader: 'babel-loader' }] }, |