From b33a6309c3f639fd424da76b87658490c8d5c5b4 Mon Sep 17 00:00:00 2001 From: Gremlin Date: Fri, 3 Jul 2026 18:36:47 +0000 Subject: [PATCH] fix(blog): point Prisma Compute series docs link to /docs/compute The above-the-fold docs link on the Prisma Compute blog series landing page (https://www.prisma.io/blog/series/prisma-compute) pointed to https://docs.prisma.io/docs/prisma-compute, which returns a 404. Update the series registry's docsUrl to the canonical, working Compute docs landing page at https://docs.prisma.io/docs/compute (verified to return 200). Other existing /docs/prisma-compute/deploy references in blog posts resolve correctly and are left unchanged. --- apps/blog/src/lib/series-registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/blog/src/lib/series-registry.ts b/apps/blog/src/lib/series-registry.ts index 0a368347f6..5d991ee0c5 100644 --- a/apps/blog/src/lib/series-registry.ts +++ b/apps/blog/src/lib/series-registry.ts @@ -23,7 +23,7 @@ export const seriesRegistry = { description: "The story of Prisma Compute: TypeScript app hosting that runs on the same infrastructure as your database. From the public beta launch to the runtime engineering underneath.", featured: true, - docsUrl: "https://docs.prisma.io/docs/prisma-compute", + docsUrl: "https://docs.prisma.io/docs/compute", docsLabel: "Read the Prisma Compute docs", relatedSeries: ["agentic-engineering", "prisma-next"], },