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 24b395f commit c241038Copy full SHA for c241038
commands/storybook.js
@@ -66,6 +66,7 @@ async function storybook(serve, options) {
66
67
// Get storyIds to be rendered
68
let storyIds = static.filterStories(dirPath, storybookConfig)
69
+ let maxStories = storybookConfig.chunkSize || 100;
70
71
// Upload Storybook static
72
await static.getSignedUrl(options)
@@ -160,6 +161,7 @@ async function storybook(serve, options) {
160
161
},
162
buildName: buildName,
163
tunnel: options.tunnel || {},
164
+ maxStories: maxStories
165
}
166
167
// Call static render API
0 commit comments