From 1cd486026a4f5033be578d1b5cd64819dfc8b028 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 16:07:13 +0000 Subject: [PATCH 1/2] docs: add settings.disable-explorer-proxy documentation Document the new settings.disable-explorer-proxy option in docs.yml that allows the API explorer to bypass the proxy when sending requests. Include a warning about CORS requirements when this feature is enabled. Co-Authored-By: Catherine Deskur --- .../docs/pages/customization/what-is-docs-yml.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fern/products/docs/pages/customization/what-is-docs-yml.mdx b/fern/products/docs/pages/customization/what-is-docs-yml.mdx index 72caf14d5..095a5f1d3 100644 --- a/fern/products/docs/pages/customization/what-is-docs-yml.mdx +++ b/fern/products/docs/pages/customization/what-is-docs-yml.mdx @@ -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 @@ -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. + + If set to true, the API explorer will bypass the proxy when sending requests directly to your API. + + + When this feature is enabled, your API must have CORS (Cross-Origin Resource Sharing) enabled to allow requests from the documentation domain. + + + If set to true, the code blocks will be displayed in dark mode, regardless of the selected theme. From 8ef265b2cd791a4880159cff73061556699d4b0b Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 16:09:32 +0000 Subject: [PATCH 2/2] fix: address Vale linting suggestions - Capitalize 'API Explorer' per FernStyles.Reject rule - Define CORS acronym on first use per FernStyles.Acronyms rule Co-Authored-By: Catherine Deskur --- fern/products/docs/pages/customization/what-is-docs-yml.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fern/products/docs/pages/customization/what-is-docs-yml.mdx b/fern/products/docs/pages/customization/what-is-docs-yml.mdx index 095a5f1d3..b32d449c0 100644 --- a/fern/products/docs/pages/customization/what-is-docs-yml.mdx +++ b/fern/products/docs/pages/customization/what-is-docs-yml.mdx @@ -553,10 +553,10 @@ settings: - If set to true, the API explorer will bypass the proxy when sending requests directly to your API. + If set to true, the API Explorer will bypass the proxy when sending requests directly to your API. - When this feature is enabled, your API must have CORS (Cross-Origin Resource Sharing) enabled to allow requests from the documentation domain. + When this feature is enabled, your API must have Cross-Origin Resource Sharing (CORS) enabled to allow requests from the documentation domain.