diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-09-17 20:42:36 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-09-17 20:42:36 +0200 |
| commit | a0b82b62198b03b0cd5ef7a2b6206c543dd6db3f (patch) | |
| tree | fbae9720457882f38713422189e9131c28c64cfe /web/astro.config.mjs | |
| parent | b1df082dc97720a0cc2f5e92c7991fd50f08a0bc (diff) | |
| download | Firmament-a0b82b62198b03b0cd5ef7a2b6206c543dd6db3f.tar.gz Firmament-a0b82b62198b03b0cd5ef7a2b6206c543dd6db3f.tar.bz2 Firmament-a0b82b62198b03b0cd5ef7a2b6206c543dd6db3f.zip | |
fix(web): pnpm build
Diffstat (limited to 'web/astro.config.mjs')
| -rw-r--r-- | web/astro.config.mjs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 061f596..a043486 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -3,10 +3,12 @@ import { defineConfig } from 'astro/config'; import tailwind from '@astrojs/tailwind'; +import mdx from "@astrojs/mdx"; + // https://astro.build/config export default defineConfig({ - integrations: [tailwind()], + integrations: [tailwind(), mdx()], redirects: { - "/discord": "https://discord.com/invite/64pFP94AWA", + "/discord": "https://discord.com/invite/64pFP94AWA", }, -}); +});
\ No newline at end of file |
