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
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ IMPORTANT! Consider avoiding persistent containers early during development to a
## Aspire workload
IMPORTANT! The aspire workload is obsolete. You should never attempt to install or use the Aspire workload.

## Verifying documentation changes
After making documentation changes, running `pnpm dev` (the dev server) is sufficient to verify that the changes render correctly. A full `pnpm run build` is not required because it takes a long time.
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

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

The guidance here is a bit misleading because pnpm run build (via src/frontend's build script) also runs pnpm linkcheck before astro build. For documentation changes—especially link updates—skipping build means you may miss broken internal links that only get validated during linkcheck/production build. Consider rewording to say pnpm dev is enough to verify rendering, but pnpm linkcheck/pnpm build(:production) should be run when changing links/routing/sidebar content or before merge when feasible (or rely on CI for that).

Suggested change
After making documentation changes, running `pnpm dev` (the dev server) is sufficient to verify that the changes render correctly. A full `pnpm run build` is not required because it takes a long time.
After making documentation changes, running `pnpm dev` (the dev server) is sufficient to verify that the changes render correctly. However, because `pnpm run build` also runs `pnpm linkcheck`, you should run `pnpm linkcheck` or `pnpm run build` when you change links, routing, or sidebar content, or before merging when feasible (or rely on CI to run these checks).

Copilot uses AI. Check for mistakes.
Copy link
Member

Choose a reason for hiding this comment

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

No, pnpm linkcheck does a full build.


## Official documentation
IMPORTANT! Always prefer official documentation when available. The following sites contain the official documentation for Aspire and related components

Expand Down
Loading