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
commit4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947 (patch)
treef0ad5177beff41df32badc6535c74188ade9e026 /packages/integrations/node/src
parent1b6cb6cfeab973ec98e8d6bacf2835c28b5109dc (diff)
downloadastro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.tar.gz
astro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.tar.zst
astro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.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());
- },
+ }
},
};
}