vue-cli-plugin-hz-pages
Version:
依托vue-cli3的多页面脚手架插件
19 lines (17 loc) • 489 B
JavaScript
module.exports = (api, options, rootOptions) => {
// 修改 `package.json` 里的字段
api.extendPackage({
scripts: {
serv: 'vue-cli-service serv',
build: 'vue-cli-service build',
add: 'vue-cli-service add'
}
})
// 复制并用 ejs 渲染 `./template` 内所有的文件
// api.render('./template', {
// doesCompile: api.hasPlugin('babel') || api.hasPlugin('typescript')
// })
// if (options.foo) {
// // 有条件地生成文件
// }
}