Files
vercel__workflow/docs/next.config.ts
Rich Haines aa93cc5e69 Migrate docs to package-backed geistdocs (#2222)
* Migrate docs to package-backed geistdocs

* update agent install cmd on home page

* add copy prompt component usage

* update docs test for sitemap inclusion

* cut unused components

* address docs migration review feedback

* address stale review feedback: geistdocs 1.8.2, version icons, cookbook prompts

* drop Workflow from OSS products dropdown (self-link)

* bump @vercel/geistdocs to 1.11.0

* fix: resolve pnpm-lock.yaml conflict marker from main merge

---------

Co-authored-by: Peter Wielander <peter.wielander@vercel.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-07-13 18:44:11 +02:00

190 lines
6.3 KiB
TypeScript

import { createMDX } from 'fumadocs-mdx/next';
import type { NextConfig } from 'next';
const withMDX = createMDX();
const config: NextConfig = {
experimental: {
turbopackFileSystemCacheForDev: true,
},
typescript: {
ignoreBuildErrors: true,
},
outputFileTracingIncludes: {
'/og/\\[\\.\\.\\.slug\\]': ['./lib/og/assets/**/*'],
'/worlds/\\[id\\]/opengraph-image': ['./lib/og/assets/**/*'],
},
async redirects() {
return [
{
source: '/docs',
destination: '/docs/getting-started',
permanent: true,
},
{
source: '/v5/docs',
destination: '/v5/docs/getting-started',
permanent: false,
},
{
source: '/docs/cookbook',
destination: '/cookbook',
permanent: true,
},
{
source: '/docs/cookbook/:path*',
destination: '/cookbook/:path*',
permanent: true,
},
{
source: '/cookbooks',
destination: '/cookbook',
permanent: true,
},
{
source: '/cookbooks/:path*',
destination: '/cookbook/:path*',
permanent: true,
},
{
source: '/err/:slug',
destination: '/docs/errors/:slug',
permanent: true,
},
// Redirect old world docs to new /worlds routes
{
source: '/docs/deploying/world/local-world',
destination: '/worlds/local',
permanent: true,
},
{
source: '/docs/deploying/world/postgres-world',
destination: '/worlds/postgres',
permanent: true,
},
{
source: '/docs/deploying/world/vercel-world',
destination: '/worlds/vercel',
permanent: true,
},
{
source: '/docs/worlds',
destination: '/worlds',
permanent: true,
},
// Foundations "Common Patterns" page was retired in favor of dedicated
// cookbook recipes. Path-level redirect lands visitors on the cookbook
// overview where each pattern (Sequential & Parallel, Workflow
// Composition, Timeouts, etc.) has its own page. Note: anchor fragments
// from old links (#timeout-pattern, #direct-await-flattening, etc.) are
// dropped on redirect — Next.js redirects() does not match anchors.
{
source: '/docs/foundations/common-patterns',
destination: '/cookbook',
permanent: true,
},
{
source: '/docs/foundations/control-flow-patterns',
destination: '/cookbook',
permanent: true,
},
// Cookbook: child-workflows and distributed-abort-controller moved
// from common-patterns (now "Reliability Patterns") to advanced
{
source: '/cookbook/common-patterns/child-workflows',
destination: '/cookbook/advanced/child-workflows',
permanent: true,
},
{
source: '/cookbook/common-patterns/distributed-abort-controller',
destination: '/cookbook/advanced/distributed-abort-controller',
permanent: true,
},
// Cookbook: stop-workflow → agent-stop-signal → agent-cancellation.
// The page now covers both Hard Cancellation (run.cancel()) and Stop
// Signal (hook + Promise.race) as named patterns, so the broader
// "Agent Cancellation" title fits both. Both prior URLs land directly
// on the current page (no redirect chains).
{
source: '/cookbook/agent-patterns/stop-workflow',
destination: '/cookbook/agent-patterns/agent-cancellation',
permanent: true,
},
{
source: '/cookbook/agent-patterns/agent-stop-signal',
destination: '/cookbook/agent-patterns/agent-cancellation',
permanent: true,
},
// setAttributes graduated from experimental_setAttributes; the API
// reference page moved with it. Cover both the versioned (v5) path and
// the unversioned path so links keep working once v5 becomes default.
{
source: '/v5/docs/api-reference/workflow/experimental-set-attributes',
destination: '/v5/docs/api-reference/workflow/set-attributes',
permanent: true,
},
{
source: '/docs/api-reference/workflow/experimental-set-attributes',
destination: '/docs/api-reference/workflow/set-attributes',
permanent: true,
},
{
source: '/python',
destination: '/docs/getting-started/python',
permanent: true,
},
// API reference restructure: getWorld and the World SDK moved from the
// workflow-api section to workflow-runtime, and the observability
// utilities page became its own workflow-observability section —
// matching the `workflow/runtime` and `workflow/observability` import
// paths these APIs are actually exported from. The observability rules
// must come before the world/:path* catch-alls (first match wins).
{
source: '/docs/api-reference/workflow-api/world/observability',
destination: '/docs/api-reference/workflow-observability',
permanent: true,
},
{
source: '/v5/docs/api-reference/workflow-api/world/observability',
destination: '/v5/docs/api-reference/workflow-observability',
permanent: true,
},
{
source: '/docs/api-reference/workflow-api/get-world',
destination: '/docs/api-reference/workflow-runtime/get-world',
permanent: true,
},
{
source: '/v5/docs/api-reference/workflow-api/get-world',
destination: '/v5/docs/api-reference/workflow-runtime/get-world',
permanent: true,
},
{
source: '/docs/api-reference/workflow-api/world',
destination: '/docs/api-reference/workflow-runtime/world',
permanent: true,
},
{
source: '/v5/docs/api-reference/workflow-api/world',
destination: '/v5/docs/api-reference/workflow-runtime/world',
permanent: true,
},
{
source: '/docs/api-reference/workflow-api/world/:path*',
destination: '/docs/api-reference/workflow-runtime/world/:path*',
permanent: true,
},
{
source: '/v5/docs/api-reference/workflow-api/world/:path*',
destination: '/v5/docs/api-reference/workflow-runtime/world/:path*',
permanent: true,
},
];
},
};
export default withMDX(config);