summaryrefslogtreecommitdiff
path: root/.changeset/six-grapes-look.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/six-grapes-look.md')
-rw-r--r--.changeset/six-grapes-look.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/.changeset/six-grapes-look.md b/.changeset/six-grapes-look.md
deleted file mode 100644
index edf10e01a..000000000
--- a/.changeset/six-grapes-look.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-'astro': major
----
-
-The value of `import.meta.env.BASE_URL`, which is derived from the `base` option, will no longer have a trailing slash added by default or when `trailingSlash: "ignore"` is set. The existing behavior of `base` in combination with `trailingSlash: "always"` or `trailingSlash: "never"` is unchanged.
-
-If your `base` already has a trailing slash, no change is needed.
-
-If your `base` does not have a trailing slash, add one to preserve the previous behaviour:
-
-```diff
-// astro.config.mjs
-- base: 'my-base',
-+ base: 'my-base/',
-```