webpack.config.js 229 B

1234567
  1. const webpack = require('webpack');
  2. module.exports = (webpackConfig) => {
  3. // Avoid import all locale file of moment
  4. webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
  5. return webpackConfig;
  6. };