staven630 / vue-cli4-config

vue-cli4配置vue.config.js持续更新
https://staven630.github.io/vue-cli4-config/
2.7k stars 616 forks source link

请教momentjs里ignore非本地语言包该怎么配置 #10

Closed openks closed 5 years ago

staven630 commented 5 years ago

我没实验,你试下可行?

const webpack = require('webpack')

chainWebpack: config => {
  config.plugin('ignore').use(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
}
openks commented 5 years ago

你这个是把所有语言包全删了吧 网上找了个这个。

chainWebpack: (config) => { 
     config.plugin('context').use(webpack.ContextReplacementPlugin, [/moment[/\\]locale$/, /zh-cn/]); 
}
staven630 commented 5 years ago

需要单独手动引用所需的语言包呀

staven630 commented 5 years ago

刚尝试了,你的方法可以