Files

24 lines
637 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<link rel="stylesheet" href="/css/style.css" />
<meta name="theme-color" content="#31d53d" />
<title>Vite + Lit App</title>
<script type="module" src="/src/my-element.ts"></script>
<script src="capacitor.js"></script>
</head>
<body>
<my-element>
<p>This is child content</p>
</my-element>
</body>
</html>