summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2022-10-27 15:39:11 -0300
committerGravatar GitHub <noreply@github.com> 2022-10-27 15:39:11 -0300
commitf4dd4522bf9e9619368a20fc6049df4b93cfd83e (patch)
tree2d076df3cea491e99c636a6d5561585fd0d6cebd
parent018cc7d51f372dc0e511d9dc1dfff0d01bc22309 (diff)
downloadastro-f4dd4522bf9e9619368a20fc6049df4b93cfd83e.tar.gz
astro-f4dd4522bf9e9619368a20fc6049df4b93cfd83e.tar.zst
astro-f4dd4522bf9e9619368a20fc6049df4b93cfd83e.zip
Fix unintentional change to minimal example (#5214)
-rw-r--r--examples/minimal/src/pages/index.astro3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/minimal/src/pages/index.astro b/examples/minimal/src/pages/index.astro
index 3fba466cb..7264ff502 100644
--- a/examples/minimal/src/pages/index.astro
+++ b/examples/minimal/src/pages/index.astro
@@ -10,7 +10,6 @@
<title>Astro</title>
</head>
<body>
- <h1>SITE: {Astro.site}</h1>
- <p>BASE_URL: {import.meta.env.BASE_URL}</p>
+ <h1>Astro</h1>
</body>
</html>