diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-14 21:05:47 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-14 21:11:30 +0100 |
| commit | c5204bca3d9d932eb249d8a8b5dfe3144160fdd9 (patch) | |
| tree | 9ae9f5b45451bfe1eba3a53a92414f9af2d2e152 /astro.config.mjs | |
| parent | fe4c9492d28c8afcd2a999245865ce5f8a907203 (diff) | |
Installs MDX plugin
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 882e651..16fce76 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,4 +1,7 @@ import { defineConfig } from 'astro/config'; +import mdx from '@astrojs/mdx'; // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + integrations: [mdx()], +}); |
