diff options
author | 2023-07-28 12:15:09 +0100 | |
---|---|---|
committer | 2023-08-08 11:02:00 +0100 | |
commit | cd2d7e76981ef9b9013453aa2629838e1e9fd422 (patch) | |
tree | a8c2a989f1e5e0aa1535ce0e00ae46bd3482010c /packages/integrations/netlify/src/integration-edge-functions.ts | |
parent | 80f1494cdaf72e58a420adb4f7c712d4089e1923 (diff) | |
download | astro-cd2d7e76981ef9b9013453aa2629838e1e9fd422.tar.gz astro-cd2d7e76981ef9b9013453aa2629838e1e9fd422.tar.zst astro-cd2d7e76981ef9b9013453aa2629838e1e9fd422.zip |
feat: astro features (#7815)
Diffstat (limited to 'packages/integrations/netlify/src/integration-edge-functions.ts')
-rw-r--r-- | packages/integrations/netlify/src/integration-edge-functions.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/integrations/netlify/src/integration-edge-functions.ts b/packages/integrations/netlify/src/integration-edge-functions.ts index ac7c124fb..4e8bc6aa4 100644 --- a/packages/integrations/netlify/src/integration-edge-functions.ts +++ b/packages/integrations/netlify/src/integration-edge-functions.ts @@ -11,6 +11,16 @@ export function getAdapter(): AstroAdapter { name: '@astrojs/netlify/edge-functions', serverEntrypoint: '@astrojs/netlify/netlify-edge-functions.js', exports: ['default'], + supportedAstroFeatures: { + hybridOutput: 'stable', + staticOutput: 'stable', + serverOutput: 'stable', + assets: { + supportKind: 'stable', + isSharpCompatible: false, + isSquooshCompatible: false, + }, + }, }; } |