From 44e8f133a43cced3ed75afe2eb3f64b9d5bfc55e Mon Sep 17 00:00:00 2001 From: littly <544028951@qq.com> Date: Fri, 8 Mar 2019 15:28:34 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=94=B9=E6=AD=A3=E4=BA=86=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E4=B8=AD=E5=85=B3=E4=BA=8Eentry=E7=9A=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/config-detail.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config-detail.md b/docs/config-detail.md index 01abbf0ff907..bc8a0394d980 100644 --- a/docs/config-detail.md +++ b/docs/config-detail.md @@ -428,9 +428,9 @@ Taro app 的入口,同[webpack.entry](https://webpack.js.org/configuration/ent ```jsx { entry: { - home: './home.js', - about: './about.js', - contact: './contact.js' + home: ['./home.js'], + about: ['./about.js'], + contact: ['./contact.js'] } } ```