-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.04 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>pubsub-ui</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="assets/icon.png">
<!-- icon source -->
<!-- <a href="https://www.flaticon.com/free-icons/food-and-restaurant" title="food and restaurant icons">Food and restaurant icons created by Nikita Golubev - Flaticon</a> -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="http://fonts.cdnfonts.com/css/cascadia-code" rel="stylesheet">
<script>
window.APP_CONFIG = {
autoAttachPubsubProjects: '${AUTO_ATTACH_PUBSUB_PROJECTS}',
defaultPubsubEmulatorHost: '${DEFAULT_PUBSUB_EMULATOR_HOST}'
};
</script>
</head>
<body class="mat-app-background">
<app-root></app-root>
</body>
</html>