angular/devtools/projects/shell-chrome/src/_index.html
AleksanderBodurri 6b06fa3f78 refactor(devtools): make bazel labels follow snake case convention
Previously, camel case was used for bazel labels in the devtools directory. This commit changes these labels to snake case except in the case where the label is identical to the directory name that the BUILD file is in.
2022-01-26 16:35:30 -05:00

16 lines
526 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 href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="assets/icon16.png" />
</head>
<body>
<app-root></app-root>
<script type="module" src="./devtools_app_bundle_es2015/devtools_app_bundle_es2015.js"></script>
</body>
</html>