使用IgnorePlugin忽略不需要打包的文件
在使用一些带有插件或者语言包三方库时候,可以通过IgnorePlugin内置插件忽略项目用不到的文件。既节省了打包时间又减小了打包后文件体积。下面是moment只引入中文
// webpack config
module.exports = {
plugins: [
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
})
]
}
// webpack中忽略所有语言包文件,代码中引入需要的语言包即可
import moment from 'moment'
import 'moment/locale/zh-cn'
console.log('time:')
console.log(moment().format('LLLL'))