1 Star 0 Fork 9

zhenli/vue开发移动端,微信公众号模板架构

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
clh 提交于 2019-12-20 18:19 . update
const path = require('path');
module.exports = {
chainWebpack: config => {
const types = ['vue-modules', 'vue', 'normal-modules', 'normal'];
types.forEach(type => addStyleResource(config.module.rule('less').oneOf(type)))
}
};
//配置全局less文件
function addStyleResource(rule) {
rule.use('style-resource')
.loader('style-resources-loader')
.options({
patterns: [path.resolve(__dirname, "./src/assets/css/_theme1.less")]
});
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/arayaya/vue-mobile-template.git
git@gitee.com:arayaya/vue-mobile-template.git
arayaya
vue-mobile-template
vue开发移动端,微信公众号模板架构
master

搜索帮助