fix(devtools): ensure external docs link opens correctly from extension popup

Adds target="_blank" and rel="noopener noreferrer" to prevent tab-nabbing and follow modern security best practices.
This commit is contained in:
Alessio Pelliccione
2025-11-16 17:33:01 +01:00
committed by Jessica Janiuk
parent c5c1689348
commit 1aed9408a4
@@ -56,7 +56,12 @@
<section>
<p>
Angular application running in
<a href="https://angular.dev/api/core/enableProdMode">production mode</a>.
<a
href="https://angular.dev/api/core/enableProdMode"
target="_blank"
rel="noopener noreferrer"
>production mode</a
>.
</p>
<p>We recommend using DevTools with apps in dev mode, running <code>ng serve</code>.</p>
</section>