summaryrefslogtreecommitdiff
path: root/examples/basics/src
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2022-08-08 12:34:05 -0500
committerGravatar GitHub <noreply@github.com> 2022-08-08 12:34:05 -0500
commitf207c417e08b2b5ad27cf185888b02392bb568e0 (patch)
tree6f39e4564224d87d4b65a231e229c3dcefa9407c /examples/basics/src
parent2c710e4edb7fdf80bee0d12903bee8c27d7fd355 (diff)
downloadastro-f207c417e08b2b5ad27cf185888b02392bb568e0.tar.gz
astro-f207c417e08b2b5ad27cf185888b02392bb568e0.tar.zst
astro-f207c417e08b2b5ad27cf185888b02392bb568e0.zip
Add Astro.generator (#4012)
* 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>
Diffstat (limited to 'examples/basics/src')
-rw-r--r--examples/basics/src/layouts/Layout.astro1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/basics/src/layouts/Layout.astro b/examples/basics/src/layouts/Layout.astro
index 9a46f2d8e..c75726968 100644
--- a/examples/basics/src/layouts/Layout.astro
+++ b/examples/basics/src/layouts/Layout.astro
@@ -12,6 +12,7 @@ const { title } = Astro.props as Props;
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
+ <meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>