diff options
Diffstat (limited to 'apps/website/astro.config.ts')
-rw-r--r-- | apps/website/astro.config.ts | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts index c7c7928..60831d1 100644 --- a/apps/website/astro.config.ts +++ b/apps/website/astro.config.ts @@ -1,16 +1,23 @@ import tailwind from '@astrojs/tailwind'; +import mdx from '@astrojs/mdx'; +import sitemap from '@astrojs/sitemap'; + import { defineConfig } from 'astro/config'; -// @ts-ignore - Tailwind doesn't have types for this yet import postcssNesting from 'tailwindcss/nesting'; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()], + site: 'https://polyfrost.org', + integrations: [ + tailwind(), + mdx(), + sitemap(), + ], vite: { css: { postcss: { - plugins: [postcssNesting] - } - } - } + plugins: [postcssNesting()], + }, + }, + }, }); |