summaryrefslogtreecommitdiff
path: root/.changeset/chilly-terms-know.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/chilly-terms-know.md')
-rw-r--r--.changeset/chilly-terms-know.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/.changeset/chilly-terms-know.md b/.changeset/chilly-terms-know.md
deleted file mode 100644
index ea5de6602..000000000
--- a/.changeset/chilly-terms-know.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-'astro': major
----
-
-Updates how the `build.client` and `build.server` option values get resolved to match existing documentation. With this fix, the option values will now correctly resolve relative to the `outDir` option. So if `outDir` is set to `./dist/nested/`, then by default:
-
-- `build.client` will resolve to `<root>/dist/nested/client/`
-- `build.server` will resolve to `<root>/dist/nested/server/`
-
-Previously the values were incorrectly resolved:
-
-- `build.client` was resolved to `<root>/dist/nested/dist/client/`
-- `build.server` was resolved to `<root>/dist/nested/dist/server/`
-
-If you were relying on the previous build paths, make sure that your project code is updated to the new build paths.