diff options
author | 2022-04-14 09:51:53 -0400 | |
---|---|---|
committer | 2022-04-14 09:51:53 -0400 | |
commit | 6b6e4ef1d947e763f2c212917fb619dee18cf86d (patch) | |
tree | f4ccb392bd249026afc6ef89856b7465b5876bc3 /packages/integrations/node/src | |
parent | b65fed618935f0e4edfd6a89762374514dc3b246 (diff) | |
download | astro-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.ts | 2 |
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()); - }, + } }, }; } |