From 0b565cb5f4cdb50b5e51ad136a0e230a9d332fb1 Mon Sep 17 00:00:00 2001 From: qiang Date: Fri, 11 Oct 2019 20:30:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A6=81=E7=94=A8=E5=A4=9A=E8=BF=9B?= =?UTF-8?q?=E7=A8=8B=E7=BC=96=E8=AF=91=20=E9=81=BF=E5=85=8Dmanifest?= =?UTF-8?q?=E7=BC=96=E8=AF=91=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 禁用多进程编译 避免manifest编译失败 --- build/vue.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/vue.config.js b/build/vue.config.js index 037684040..67293206e 100644 --- a/build/vue.config.js +++ b/build/vue.config.js @@ -20,6 +20,7 @@ module.exports = { transpileDependencies: [], productionSourceMap: false, configureWebpack: webpackConfig, + parallel: process.env.UNI_PLATFORM !== 'h5' || process.env.UNI_WATCH !== 'false' || process.env.UNI_UI === 'true', chainWebpack: config => { config.devtool('source-map') @@ -40,4 +41,4 @@ module.exports = { css: { extract: true } -} +} -- GitLab