Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fern/products/docs/pages/customization/what-is-docs-yml.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ layout:
settings:
search-text: "Search the docs..."
disable-search: false
disable-explorer-proxy: false
dark-mode-code: true
default-search-filters: true
http-snippets: false
Expand All @@ -551,6 +552,14 @@ settings:
If set to true, the searchbar will be disabled. Use this if you want to use a custom search solution.
</ParamField>

<ParamField path="settings.disable-explorer-proxy" type="boolean" required={false} default="false" toc={true}>
If set to true, the API Explorer will bypass the proxy when sending requests directly to your API.

<Warning>
When this feature is enabled, your API must have Cross-Origin Resource Sharing (CORS) enabled to allow requests from the documentation domain.
</Warning>
</ParamField>

<ParamField path="settings.dark-mode-code" type="boolean" required={false} default="false" toc={true}>
If set to true, the code blocks will be displayed in dark mode, regardless of the selected theme.
</ParamField>
Expand Down