mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Add support to material design icons in offline mode for Angular Devtools. Self hosting the web font so icons are loaded regardless of network connection. Bring the font file as well as its corresponding css file from third_party repo through bazel into shell-browser directory while building. PR Close #45743
18 lines
621 B
HTML
18 lines
621 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/github.com/google/material-design-icons/material-icons.css">
|
|
<link rel="stylesheet" href="./styles.css"></head>
|
|
</head>
|
|
<body>
|
|
<app-root></app-root>
|
|
|
|
<script src="./packages/zone.js/bundles/zone.umd.js"></script>
|
|
<script type="module" src="./bundle/main.js"></script>
|
|
</body>
|
|
</html>
|