24 lines
396 B
HTML
24 lines
396 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<base href="/" />
|
||
|
<meta
|
||
|
name="viewport"
|
||
|
content="width=device-width, initial-scale=1"
|
||
|
/>
|
||
|
<link
|
||
|
rel="icon"
|
||
|
type="image/png"
|
||
|
href="/favicon-32x32.png"
|
||
|
/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<kc-root></kc-root>
|
||
|
<script
|
||
|
type="module"
|
||
|
src="/src/main.ts"
|
||
|
></script>
|
||
|
</body>
|
||
|
</html>
|