From 2fb91e9d6452a2849a61ab752a061c7b6faa3409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=8A=98=E8=85=BE=E7=AC=94=E8=AE=B0?= Date: Fri, 10 Apr 2020 12:12:55 +0800 Subject: [PATCH] Update vue-config.md --- docs/collocation/vue-config.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/collocation/vue-config.md b/docs/collocation/vue-config.md index c8d1e1b749..4ca529dfa3 100644 --- a/docs/collocation/vue-config.md +++ b/docs/collocation/vue-config.md @@ -6,6 +6,8 @@ vue.config.js 是一个可选的配置文件,如果项目的根目录中存在 **注意事项** +仅vue页面生效 + 部分配置项会被编译配置覆盖,例如: * publicPath 不支持,如果需要配置,请在 manifest.json->h5->router->base 中配置,参考文档:[h5-router](collocation/manifest?id=h5-router) @@ -15,7 +17,7 @@ vue.config.js 是一个可选的配置文件,如果项目的根目录中存在 * runtimeCompiler 固定 false * productionSourceMap 固定 false * css.extract H5 平台固定 false,其他平台固定 true -* parallel 固定 false +* parallel 固定 false * 使用cli项目时,默认情况下 babel-loader 会忽略所有 node_modules 中的文件。如果你想要通过 Babel 显式转译一个依赖,可以在transpileDependencies中列出来。[详情参考](https://cli.vuejs.org/zh/config/#transpiledependencies) **使用示例** @@ -57,11 +59,11 @@ module.exports = { } ``` -**发布时删除console** - -`HBuilderX 2.6.8+`支持 - -```js +**发布时删除console** + +`HBuilderX 2.6.8+`支持 + +```js module.exports = { chainWebpack: (config) => { // 发行或运行时启用了压缩时会生效 @@ -76,5 +78,5 @@ module.exports = { return args }) } -} -``` \ No newline at end of file +} +``` -- GitLab