-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (25 loc) · 1023 Bytes
/
404.html
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
29
30
<!doctype html>
<html lang="en-US" class="theme-light">
<head>
<meta charset="utf-8">
<meta name="Description" content="An app using TensorFlow.js as Web Components.">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta name="theme-color" content="#000000">
<base href="/tfjs-component-playground/">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="theme.css">
<title>TFJSComponentPlayground</title>
</head>
<body>
<tfjs-component-playground
siteTitle="TFJS Component Playground"
siteUrl="/tfjs-component-playground/"
></tfjs-component-playground>
<script type="module" src="./dist/esm/tfjs-component-playground.js"></script>
<script type="module">
import registerServiceWorker from './service-worker/registerServiceWorker.js'
registerServiceWorker(document.querySelector('base').href.replace(/\/$/, ''))
</script>
</body>
</html>