/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/shell-browser/src/popups/production.html
71 строка
1 KB
Alessio Pelliccione
fix(devtools): ensure external docs link opens correctly from extension popup
17 ноя 2025, 19:45
17 ноя 2025, 19:45
1aed940
Код
Авторство
О чём код?
<html> <head> <link href="../third_party/fonts.google.com/material-symbols-outlined/outlined.css" rel="stylesheet" /> <style> * { margin: 0; padding: 0; } .header-text { margin: 0px; text-align: center; padding-bottom: 8px; } .modal-content { min-width: 300px; padding: 10px; } .icon { width: 20px; margin-right: 16px; } .message { display: flex; align-items: center; padding: 5px; } code { font-size: 1em; font-family: monospace; } p:not(:last-child) { margin-bottom: 10px; } .material-symbols-outlined { color: rgb(107, 107, 107); margin-right: 10px; } </style> </head> <body> <div class="modal-content"> <h4 class="header-text">Angular DevTools</h4> <div class="message"> <span class="material-symbols-outlined md-48">settings</span> <section> <p> Angular application running in <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> </div> </div> </body> </html>