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.

All these links use target: '_blank' but don’t set a rel (e.g., noopener), which can allow reverse-tabnabbing via window.opener when opening external sites. Consider ensuring a safe rel attribute is applied anywhere _blank is used.

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: 'Creative Intelligence Suite', link: 'https://cis-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