summaryrefslogtreecommitdiff
path: root/.changeset/afraid-apricots-buy.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/afraid-apricots-buy.md')
-rw-r--r--.changeset/afraid-apricots-buy.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/.changeset/afraid-apricots-buy.md b/.changeset/afraid-apricots-buy.md
deleted file mode 100644
index 8be7e9db8..000000000
--- a/.changeset/afraid-apricots-buy.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-'astro': minor
----
-
-Adapters can now specify the build output type they're intended for using the `adapterFeatures.buildOutput` property. This property can be used to always generate a server output, even if the project doesn't have any server-rendered pages.
-
-```ts
-{
- 'astro:config:done': ({ setAdapter, config }) => {
- setAdapter({
- name: 'my-adapter',
- adapterFeatures: {
- buildOutput: 'server',
- },
- });
- },
-}
-```
-
-If your adapter specifies `buildOutput: 'static'`, and the user's project contains server-rendered pages, Astro will warn in development and error at build time. Note that a hybrid output, containing both static and server-rendered pages, is considered to be a `server` output, as a server is required to serve the server-rendered pages.