Skip to content

Commit 133264f

Browse files
committed
fix(shell-docs): 301 /concepts/oss-vs-cloud → /concepts/oss-vs-enterprise
The previous commit renamed the file but didn't add a redirect, so any open browser tab or external link to /concepts/oss-vs-cloud now 404s — surfacing as a "sidebar disappeared" experience because the 404 page doesn't render the docs shell. Add the 301 redirect alongside the migrate-to-* and frontend-actions ones.
1 parent fed5185 commit 133264f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

showcase/shell-docs/next.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,15 @@ const nextConfig: NextConfig = {
8484
destination: "/migrate/1.8.2",
8585
permanent: true,
8686
},
87+
// Concept page renamed from "OSS vs Cloud" to "OSS vs Enterprise"
88+
// because "Cloud" implied a single deployment shape — the layer is
89+
// the Intelligence Platform, which runs hosted at Copilot Cloud
90+
// OR self-hosted via the Helm chart. "Enterprise" covers both.
91+
{
92+
source: "/concepts/oss-vs-cloud",
93+
destination: "/concepts/oss-vs-enterprise",
94+
permanent: true,
95+
},
8796
];
8897
},
8998
};

0 commit comments

Comments
 (0)