chore: update ignorePlugin

pull/4671/head 2.2.8
tangjinzhou 3 years ago
parent 5d990afe27
commit 2e5e146f0c

@ -8,7 +8,9 @@ const { webpack } = getWebpackConfig;
// http://stackoverflow.com/q/25384360 // http://stackoverflow.com/q/25384360
function ignoreMomentLocale(webpackConfig) { function ignoreMomentLocale(webpackConfig) {
delete webpackConfig.module.noParse; delete webpackConfig.module.noParse;
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)); webpackConfig.plugins.push(
new webpack.IgnorePlugin({ resourceRegExp: /^\.\/locale$/, contextRegExp: /moment$/ }),
);
} }
function addLocales(webpackConfig) { function addLocales(webpackConfig) {

Loading…
Cancel
Save