aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs')
-rw-r--r--packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs b/packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs
new file mode 100644
index 000000000..3023497aa
--- /dev/null
+++ b/packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs
@@ -0,0 +1,8 @@
+import markdoc from '@astrojs/markdoc';
+import preact from '@astrojs/preact';
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({
+ integrations: [markdoc(), preact()],
+});