diff options
author | 2024-09-13 15:20:49 +0200 | |
---|---|---|
committer | 2024-09-13 15:20:49 +0200 | |
commit | c6b76a19fb0f42e5ec9e31e64ba65c477e9f001b (patch) | |
tree | 74b94dec8c78ec8210f929b17c381ce37fec8303 /packages/integrations/cloudflare/src | |
parent | c4d2f17aba5b352573e6ac182803ec5d763c8c87 (diff) | |
download | astro-c6b76a19fb0f42e5ec9e31e64ba65c477e9f001b.tar.gz astro-c6b76a19fb0f42e5ec9e31e64ba65c477e9f001b.tar.zst astro-c6b76a19fb0f42e5ec9e31e64ba65c477e9f001b.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
Diffstat (limited to 'packages/integrations/cloudflare/src')
-rw-r--r-- | packages/integrations/cloudflare/src/index.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/integrations/cloudflare/src/index.ts b/packages/integrations/cloudflare/src/index.ts index 695af8671..77d124b27 100644 --- a/packages/integrations/cloudflare/src/index.ts +++ b/packages/integrations/cloudflare/src/index.ts @@ -163,10 +163,7 @@ export default function createIntegration(args?: Options): AstroIntegration { hybridOutput: 'stable', staticOutput: 'unsupported', i18nDomains: 'experimental', - assets: { - supportKind: 'stable', - isSharpCompatible: false, - }, + sharpImageService: 'limited', envGetSecret: 'experimental', }, }); |