From 1d9ed0ae2be6ef07162807b7bb72c92fadc1ff50 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 20:31:51 +0000 Subject: [PATCH] docs: fix typo and double space in Cloudflare subpath docs --- deploy/cloudflare.mdx | 4 ++-- es/deploy/cloudflare.mdx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/cloudflare.mdx b/deploy/cloudflare.mdx index 3c5c01d057..f366e65fff 100644 --- a/deploy/cloudflare.mdx +++ b/deploy/cloudflare.mdx @@ -94,7 +94,7 @@ async function handleRequest(request) { return await fetch(proxyRequest); } } catch (error) { - // If no action found, play the regular request + // If no action found, serve the regular request return await fetch(request); } } @@ -103,7 +103,7 @@ async function handleRequest(request) { In addition to your subpath, your Worker must proxy `/mintlify-assets/*`, which serves the CSS, JavaScript, and favicons for your documentation, and `/_mintlify/*`, which handles API playground requests. - If you route traffic to your Worker with route patterns instead of a custom domain, add routes for `yoursite.com/mintlify-assets/*` and `yoursite.com/_mintlify/*` alongside your subpath route. These paths must originate from the root of your domain, not your subpath. + If you route traffic to your Worker with route patterns instead of a custom domain, add routes for `yoursite.com/mintlify-assets/*` and `yoursite.com/_mintlify/*` alongside your subpath route. These paths must originate from the root of your domain, not your subpath. Click **Deploy** and wait for the changes to propagate. diff --git a/es/deploy/cloudflare.mdx b/es/deploy/cloudflare.mdx index 9ecc62b6af..f88a1a1d08 100644 --- a/es/deploy/cloudflare.mdx +++ b/es/deploy/cloudflare.mdx @@ -102,7 +102,7 @@ async function handleRequest(request) { return await fetch(proxyRequest); } } catch (error) { - // If no action found, play the regular request + // If no action found, serve the regular request return await fetch(request); } }