diff options
author | Vitaly Takmazov | 2021-03-30 09:47:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-03-30 09:47:50 +0300 |
commit | 6b529f138b9688a55b0f4075657ff277ea991a3f (patch) | |
tree | a5b2d70d24384b34a4d844740e6e676a06fd8187 /webpack.config.js | |
parent | c9f7f4dcbe94914d411db8c4ae358ddbbff3b563 (diff) |
add missing core-js polyfills
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index d25bff51..c4fa2913 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,7 +19,7 @@ module.exports = (env, argv) => { module: { rules: [{ test: /\.js$/, - exclude: /node_modules/, + exclude: /@babel(?:\/|\\{1,2})runtime|core-js/, loader: 'babel-loader' }] }, |