astro/examples/with-vite-plugin-pwa/src/pages/index.astro
2021-12-22 16:11:05 -05:00

16 lines
386 B
Text

---
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<title>Welcome to Astro</title>
</head>
<body>
<h1>Welcome to <a href="https://astro.build/">Astro</a></h1>
<script src={Astro.resolve('../index.ts')} type="module" hoist></script>
</body>
</html>