summaryrefslogtreecommitdiff
path: root/.changeset/happy-peas-attend.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/happy-peas-attend.md')
-rw-r--r--.changeset/happy-peas-attend.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/.changeset/happy-peas-attend.md b/.changeset/happy-peas-attend.md
deleted file mode 100644
index af3af1bfc..000000000
--- a/.changeset/happy-peas-attend.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-'astro': patch
----
-
-Adds `Astro.generator` which can be used to add a [`<meta name="generator">`](https://html.spec.whatwg.org/multipage/semantics.html#meta-generator) tag.
-
-```astro
-<html>
- <head>
- <meta name="generator" content={Astro.generator} />
- </head>
- <body>
- <footer>
- <p>Built with <a href="https://astro.build">{Astro.generator}</a></p>
- </footer>
- </body>
-</html>
-```