Skip to content

Commit 0ba5ea9

Browse files
committed
Merge branch 'production' into pedro/PCX-17609-new-nav-q2-update-settings
2 parents 8c27fa1 + c78c67c commit 0ba5ea9

File tree

335 files changed

+1082
-23518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+1082
-23518
lines changed

astro.config.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,15 @@ export default defineConfig({
167167
icon(),
168168
sitemap({
169169
filter(page) {
170-
return !page.startsWith(
171-
"https://developers.cloudflare.com/style-guide/",
172-
);
170+
if (page.includes("/style-guide/")) {
171+
return false;
172+
}
173+
174+
if (page.endsWith("/404/")) {
175+
return false;
176+
}
177+
178+
return true;
173179
},
174180
serialize(item) {
175181
item.lastmod = new Date().toISOString();

public/search-additions.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
url,lvl1,content,product,productArea,contentType,description,depth
2-
https://developers.cloudflare.com/api/,API docs,Read the REST API documentation for all of Cloudflare's products,Cloudflare Fundamentals,Core platform,Read the REST API documentation for all of Cloudflare's products,1
1+
url,lvl1Selector,content,product,productArea,contentType,description,depth
2+
https://developers.cloudflare.com/api/,h1,Read the REST API documentation for all of Cloudflare's products,Cloudflare Fundamentals,Core platform,Overview,Read the REST API documentation for all of Cloudflare's products,1

src/assets/Dev-Docs-Header-Illustration-Light-Mode-cropped.svg

Lines changed: 1 addition & 1 deletion

src/assets/Dev-Docs-Header-Illustration-Light-Mode.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/agents/agent-workflow.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/agents/co-pilot.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/agents/human-in-the-loop.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/agents/workflow-automation.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/changelog/hero.svg

Lines changed: 1 addition & 1 deletion

src/assets/images/hyperdrive/configuration/hyperdrive-comparison.svg

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)