summaryrefslogtreecommitdiff
path: root/.changeset/two-geese-eat.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/two-geese-eat.md')
-rw-r--r--.changeset/two-geese-eat.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/.changeset/two-geese-eat.md b/.changeset/two-geese-eat.md
deleted file mode 100644
index d626d331f..000000000
--- a/.changeset/two-geese-eat.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-'astro': major
----
-
-Remove `buildConfig` option parameter from integration `astro:build:start` hook in favour of the `build.config` option in the `astro:config:setup` hook.
-
-```js
-export default function myIntegration() {
- return {
- name: 'my-integration',
- hooks: {
- 'astro:config:setup': ({ updateConfig }) => {
- updateConfig({
- build: {
- client: '...',
- server: '...',
- serverEntry: '...',
- },
- });
- },
- },
- };
-}
-```