mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The existing DevTools demo app that is used for developing on DevTools is exclusively an NgModule application. This commit creates a copy of the old demo app but with no NgModules and only standalone APIs/Components/Directives/Pipes PR Close #48533
21 lines
635 B
HTML
21 lines
635 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>AngularDevtools</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 href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
|
|
|
<link rel="stylesheet" href="./styles.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<app-root></app-root>
|
|
</div>
|
|
|
|
<script src="./angular/packages/zone.js/bundles/zone.umd.js"></script>
|
|
<script type="module" src="./bundle/main.js"></script>
|
|
</body>
|
|
</html>
|