summaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Ben Holmes <hey@bholmes.dev> 2023-05-30 16:18:20 -0400
committerGravatar GitHub <noreply@github.com> 2023-05-30 16:18:20 -0400
commitbef3a75dbc48d584daff9f7f3d5a8937b0356170 (patch)
tree536921af91ee7864192369e39be6f99eed134741 /packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs
parentc7897f20a9d6e04f9cdee9a0f7e48e59adf1e59a (diff)
downloadastro-bef3a75dbc48d584daff9f7f3d5a8937b0356170.tar.gz
astro-bef3a75dbc48d584daff9f7f3d5a8937b0356170.tar.zst
astro-bef3a75dbc48d584daff9f7f3d5a8937b0356170.zip
Markdoc - remove `$entry` variable (#7244)
* refactor: remove entry prop from `getRenderModule()` * refactor: remove `$entry` from markdoc * test: update entry-prop -> variables test * refactor: unify `getEntryConfigByExt` * chore: clean up shared content / data get logic * docs: update `$entry` recommendation * chore: rename entry-prop -> variables * chore: changeset * chore: missed a spot
Diffstat (limited to 'packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs')
-rw-r--r--packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs b/packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs
new file mode 100644
index 000000000..29d846359
--- /dev/null
+++ b/packages/integrations/markdoc/test/fixtures/variables/astro.config.mjs
@@ -0,0 +1,7 @@
+import { defineConfig } from 'astro/config';
+import markdoc from '@astrojs/markdoc';
+
+// https://astro.build/config
+export default defineConfig({
+ integrations: [markdoc()],
+});