Skip to content

Commit

Permalink
docs: 改正了文档中关于entry的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Littly committed Mar 8, 2019
1 parent 5e538de commit 44e8f13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/config-detail.md
Original file line number Diff line number Diff line change
Expand Up @@ -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']
}
}
```
Expand Down

0 comments on commit 44e8f13

Please sign in to comment.