summaryrefslogtreecommitdiff
path: root/.changeset/dirty-lies-cover.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/dirty-lies-cover.md')
-rw-r--r--.changeset/dirty-lies-cover.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/.changeset/dirty-lies-cover.md b/.changeset/dirty-lies-cover.md
deleted file mode 100644
index ae74e348e..000000000
--- a/.changeset/dirty-lies-cover.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-'@astrojs/cloudflare': minor
-'@astrojs/netlify': minor
-'@astrojs/vercel': minor
-'@astrojs/deno': minor
-'@astrojs/node': minor
-'astro': minor
----
-
-Introduced the concept of feature map. A feature map is a list of features that are built-in in Astro, and an Adapter
-can tell Astro if it can support it.
-
-```ts
-import {AstroIntegration} from "./astro";
-
-function myIntegration(): AstroIntegration {
- return {
- name: 'astro-awesome-list',
- // new feature map
- supportedAstroFeatures: {
- hybridOutput: 'experimental',
- staticOutput: 'stable',
- serverOutput: 'stable',
- assets: {
- supportKind: 'stable',
- isSharpCompatible: false,
- isSquooshCompatible: false,
- },
- }
- }
-}
-```