Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc-kit.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { join } from 'node:path';
/** @type {import('@node-core/doc-kit/src/utils/configuration/types.d.ts').Configuration} */
export default {
global: {
output: 'out',
output: 'out/learn',
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the doc-kit output to out/learn makes the build output no longer match the configured deploy roots. In this repo, vercel.json still has outputDirectory: "out" and the GitHub Pages workflow uploads out/ as the site root, so the generated entrypoint will end up at out/learn/index.html and deployments are likely to serve an empty site / 404 at /. Align the deployment configuration with this new output path (e.g., update Vercel outputDirectory and Pages artifact path, or keep global.output as out and configure routing/base path another way).

Suggested change
output: 'out/learn',
output: 'out',

Copilot uses AI. Check for mistakes.
input: ['pages/**/*.md'],
},
web: {
Expand Down
Loading