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
14 changes: 14 additions & 0 deletions website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,20 @@ export default defineConfig({
collapsed: true,
autogenerate: { directory: 'reference' },
},
{
label: 'BMad Ecosystem',
collapsed: false,
items: [
{ label: 'BMad Method', link: 'https://docs.bmad-method.org/', attrs: { target: '_blank' } },
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

These links set target: '_blank' but don’t specify rel="noopener noreferrer"; if the renderer doesn’t add it automatically, this can enable reverse-tabnabbing. Consider adding rel in attrs for all external links here.

Other locations where this applies: website/astro.config.mjs:112, website/astro.config.mjs:113, website/astro.config.mjs:117

Severity: medium

Other Locations
  • website/astro.config.mjs:112
  • website/astro.config.mjs:113
  • website/astro.config.mjs:117

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

{ label: 'BMad Builder', link: 'https://bmad-builder-docs.bmad-method.org/', attrs: { target: '_blank' } },
{ label: 'Game Dev Studio', link: 'https://game-dev-studio-docs.bmad-method.org/', attrs: { target: '_blank' } },
{
label: 'Test Architect (TEA)',
link: 'https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/',
attrs: { target: '_blank' },
},
],
},
],

// Credits in footer
Expand Down
Loading