angular/devtools/projects/shell-browser/src/index.html
hawkgs 29223931da fix(devtools): zone.js not being loaded for dev and prod builds (#62239)
Fixes a regression from #62083 by updating the remaining script imports.

PR Close #62239
2025-06-24 14:04:04 +00:00

21 lines
639 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ShellChrome</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="assets/icon16.png" />
<link
rel="stylesheet"
href="./third_party/fonts.google.com/material-symbols-outlined/outlined.css"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<app-root></app-root>
<script src="./node_modules/zone.js/bundles/zone.umd.min.js"></script>
<script type="module" src="./bundle/main.js"></script>
</body>
</html>