时间:2021-05-26
使用自己基于vue-cli 2.X改造的前端多页脚手架有近1年多时间了,一直没机会升级3.0版本
开始零零碎碎开始写一些功能,顺便分享一下
const path = require('path')const glob = require('glob')/** 获取多页的入口脚本和模板 */const getPages = (() => { const [ globPathHtml, globPathJs, pages, tempSet ] = [ ['./src/modulesindex.html', 'template'], // 入口模板正则 ['./src/modulesmain.js', 'entry'], // 入口脚本正则 Object.create(null), new Set() ] const getMultiPageConf = (globPath, keyName) => { let [fileList, tempArr, modName] = [glob.sync(globPath), [], null] if (fileList.length !== 0) { for (let entry of fileList) { tempArr = path.dirname(entry, path.extname(entry)).split('/') modName = tempArr[tempArr.length - 1] if (tempSet.has(modName)) { Object.assign(pages[modName], { [keyName]: entry, 'filename': `${modName}.html` }) } else { Reflect.set(pages, modName, { [keyName]: entry }) && tempSet.add(modName) } } return true } else { if (keyName === 'template') { throw new Error('无法获取多页入口模板') } else if (keyName === 'entry') { throw new Error('无法获取多页入口脚本') } else { throw new Error('无法获取多页信息') } } } try { while (getMultiPageConf(...globPathHtml) && getMultiPageConf(...globPathJs)) return pages } catch (err) { console.log('获取多页数据错误:', err) }})()console.log('pages: ', getPages)打印结果:
pages: { mod1: { template: './src/modules/mod1/index.html', entry: './src/modules/mod1/main.js', filename: 'mod1.html' }, mod2: { template: './src/modules/mod2/index.html', entry: './src/modules/mod2/main.js', filename: 'mod2.html' }, mod3: { template: './src/modules/mod3/index.html', entry: './src/modules/mod3/main.js', filename: 'mod3.html' } }使用:
/** vue.config.js */module.exports = { ... pages: getPages ...}以上这篇vue-cli 3.0 自定义vue.config.js文件,多页构建的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
我的host设置报错如下:解决办法:@Vue/Cli3在vue.config.js里加上.disableHostCheck(true)vue-cli在webpa
本文介绍了如何配置vue-cli3.0的vue.config.js,分享给大家,具体如下:vue-cli3英文文档vue-cli3中文文档webpack4plu
1.项目根目录下新建vue.config.js,进行如下配置即可module.exports={publicPath:'',};补充知识:Vue-CLI3.0更
1.在vue项目根目录下新建vue.config.js(不是在src下面)vue.config.js配置文件:module.exports={//基本路径bas
实现跨域共3个步骤:1,vue3.0根目录下创建vue.config.js文件;module.exports={devServer:{proxy:{'/api'