astro/examples/with-vite-plugin-pwa/src/pages/index.astro

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
386 B
Text
Raw Permalink Normal View History

---
---
<html lang="en">
2021-12-22 21:11:05 +00:00
<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>
2021-12-22 21:11:05 +00:00
</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>