Conversation
Signed-off-by: Aviv Keller <me@aviv.sh>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Updates the doc-kit build configuration to emit the generated static site under a nested output directory (out/learn), presumably to support hosting under a /learn base path.
Changes:
- Change doc-kit
global.outputfromouttoout/learn.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| export default { | ||
| global: { | ||
| output: 'out', | ||
| output: 'out/learn', |
There was a problem hiding this comment.
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).
| output: 'out/learn', | |
| output: 'out', |
No description provided.