2 Star 8 Fork 3

user_499098/vue-flowy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 762 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
configureWebpack: config => {
if(process.env.NODE_ENV === 'production') {
config.module.rules.forEach(rule => {
if (rule.use) {
let idx = rule.use.findIndex(w => w.loader === 'thread-loader')
if (idx !== -1) rule.use.splice(idx, 1)
}
})
}
},
chainWebpack: config => {
if(process.env.NODE_ENV === 'production') {
// disable cache (not sure if this is actually useful...)
config.module.rule("ts").uses.delete("cache-loader");
config.module
.rule('ts')
.use('ts-loader')
.loader('ts-loader')
.tap(opts => {
opts.transpileOnly = false;
opts.happyPackMode = false;
return opts;
});
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yunwisdoms/vue-flowy.git
git@gitee.com:yunwisdoms/vue-flowy.git
yunwisdoms
vue-flowy
vue-flowy
master

搜索帮助