summaryrefslogtreecommitdiff
path: root/packages/integrations/node/src
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-04-14 09:51:53 -0400
committerGravatar GitHub <noreply@github.com> 2022-04-14 09:51:53 -0400
commit6b6e4ef1d947e763f2c212917fb619dee18cf86d (patch)
treef4ccb392bd249026afc6ef89856b7465b5876bc3 /packages/integrations/node/src
parentb65fed618935f0e4edfd6a89762374514dc3b246 (diff)
downloadastro-6b6e4ef1d947e763f2c212917fb619dee18cf86d.tar.gz
astro-6b6e4ef1d947e763f2c212917fb619dee18cf86d.tar.zst
astro-6b6e4ef1d947e763f2c212917fb619dee18cf86d.zip
Support the Markdown component in SSR (#3036)
* Support the Markdown component in SSR * Adds a changeset * Support runtime markdown in Node.js * Remove option from test adapter
Diffstat (limited to 'packages/integrations/node/src')
-rw-r--r--packages/integrations/node/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/src/index.ts b/packages/integrations/node/src/index.ts
index b90cd9d2e..fc0f6cfd4 100644
--- a/packages/integrations/node/src/index.ts
+++ b/packages/integrations/node/src/index.ts
@@ -14,7 +14,7 @@ export default function createIntegration(): AstroIntegration {
hooks: {
'astro:config:done': ({ setAdapter }) => {
setAdapter(getAdapter());
- },
+ }
},
};
}