vue中使用moment,如何按需打包?

 

没有做打包优化前

 

 

 

打包优化后:

 

 

 

const webpack = require('webpack') 



configureWebpack: config => { const momentPlugin = [] momentPlugin.push( new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /zh-cn|en/) ) config.plugins = [...config.plugins, ...momentPlugin] },

 

posted @ 2021-11-12 16:26  javascript9527  阅读(323)  评论(0编辑  收藏  举报