vp-chunk-assets-plugin
v1.0.0
Published
webpack打包路由分割css资源映射
Downloads
14
Readme
安装
npm i vp-chunk-assets-plugin --registry http://npm.vpgame.cn
使用
const VPChunkAssetsPlugin = require('vp-chunk-assets-plugin')
//添加至 webpack plugins
new VPChunkAssetsPlugin({
filename: 'build/css-assets.json', //默认生成文件路径 assets-cache/assets.json
containerReg: [/client\/container\/((?!\/).)+\/index\.js/g] //默认 /client\/container\/((?!\/).)+\/index\.js/g 页面组件的父文件夹 多个可传递数组 最终匹配到的结果为 client/container/XXX/index.js
viewHtmlFile: 'xx.art', //模板路径 用户添加模板占位符 服务端添加css文件
ignoreGroupChunk: false //默认为true 如果art模板内引用的js没有style chunk启用该参数传递false
})