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
1 change: 1 addition & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function createAuthors(authors) {
export default defineConfig({
site: 'https://github.github.com',
base: '/gh-aw/',
trailingSlash: 'always',
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

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

This config change introduces an important routing/redirect behavior but there’s no regression test covering it. Since this repo already runs Playwright against the dev server (see docs/playwright.config.ts), please add a Playwright test that navigates to /gh-aw (no trailing slash) and asserts it redirects/lands on /gh-aw/ (and ideally that it’s not the 404 page / canonical URL is correct). This will prevent the base-path 404 + doubled-canonical regression from reappearing.

Copilot uses AI. Check for mistakes.
markdown: {
remarkPlugins: [remarkStripEmojis],
},
Expand Down
Loading