diff options
author | 2024-09-13 15:20:49 +0200 | |
---|---|---|
committer | 2024-09-13 15:20:49 +0200 | |
commit | 1505b6ca60d34b9d5b8d37e5d5816c42f7014a07 (patch) | |
tree | c1c18258e09f8422ddfe25ccf47f72da64b3d77c | |
parent | 89d8a7775b3bd30dab4047cf9d2a8b4b9c0d5226 (diff) | |
download | astro-1505b6ca60d34b9d5b8d37e5d5816c42f7014a07.tar.gz astro-1505b6ca60d34b9d5b8d37e5d5816c42f7014a07.tar.zst astro-1505b6ca60d34b9d5b8d37e5d5816c42f7014a07.zip |
feat: update adapters supported features to account for new shape for Astro 5 (#392)
* feat: update adapters supported features to account for new shape for Astro 5
* chore: changeset
-rw-r--r-- | packages/integrations/node/src/index.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/integrations/node/src/index.ts b/packages/integrations/node/src/index.ts index 999033a97..e91ed171b 100644 --- a/packages/integrations/node/src/index.ts +++ b/packages/integrations/node/src/index.ts @@ -17,10 +17,7 @@ export function getAdapter(options: Options): AstroAdapter { hybridOutput: 'stable', staticOutput: 'stable', serverOutput: 'stable', - assets: { - supportKind: 'stable', - isSharpCompatible: true, - }, + sharpImageService: 'stable', i18nDomains: 'experimental', envGetSecret: 'stable', }, |