* feat: add generator property and component * chore: remove `Generator` component * chore: update generator description * chore: include generator in examples * chore: update lockfile * chore: format * fix: do not reference core from server runtime * chore: remove component test Co-authored-by: Nate Moore <nate@astro.build>
19 lines
409 B
Text
19 lines
409 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" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>Welcome to Astro</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to <a href="https://astro.build/">Astro</a></h1>
|
|
<script src="/src/index.ts">
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|