You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add showInfoPage option to disable info page generation (#1272)
- Add showInfoPage boolean option (default: true) to disable info page
- Follows existing showSchemas pattern for consistency
- Also documents schemasOnly as a config option (was CLI-only before)
Closes#1103
Copy file name to clipboardExpand all lines: packages/docusaurus-plugin-openapi-docs/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,6 +176,8 @@ The `docusaurus-plugin-openapi-docs` plugin can be configured with the following
176
176
|`versions`|`object`|`null`|_Optional:_ Options for versioning configuration. See below for a list of supported options. |
177
177
|`markdownGenerators`|`object`|`null`|_Optional:_ Customize MDX content via generator functions. See below for a list of supported options. |
178
178
|`showSchemas`|`boolean`|`null`|_Optional:_ If set to `true`, generates standalone schema pages and adds them to the sidebar. |
179
+
|`showInfoPage`|`boolean`|`true`|_Optional:_ If set to `false`, disables generation of the info page (overview page with API title and description). |
180
+
|`schemasOnly`|`boolean`|`false`|_Optional:_ If set to `true`, generates only schema pages (no API endpoint pages). Also available as `--schemas-only` CLI flag. |
0 commit comments