We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a3941 commit b42c020Copy full SHA for b42c020
docs/更新日志.md
@@ -8,7 +8,8 @@
8
9
- **Fix**
10
11
- - 🐞 修复初始化模板 menu 参数类型错误的问题。
+ - 🐞 修复路由过多时导致预渲染编译超时的问题。[issue](https://github.com/MuYunyun/create-react-doc/issues/182)
12
+ - 🐞 修复初始化模板 menu 参数类型错误的问题。[mr](https://github.com/MuYunyun/create-react-doc/pull/181)
13
14
### 1.3.4
15
packages/scripts/src/conf/webpack.config.prod.js
@@ -189,6 +189,10 @@ module.exports = function (cmd) {
189
// Routes are rendered asynchronously.
190
// Use this to limit the number of routes rendered in parallel.
191
maxConcurrentRoutes: 4,
192
+ // https://pptr.dev/#?product=Puppeteer&version=v5.5.0&show=api-pagegotourl-options
193
+ navigationOptions: {
194
+ timeout: 0
195
+ }
196
}),
197
198
])
0 commit comments