| 123456789101112 |
- import { defineConfig } from "astro/config";
- import mdx from "@astrojs/mdx";
- import sitemap from "@astrojs/sitemap";
- // https://astro.build/config
- export default defineConfig({
- site: "https://simo.ng",
- // Sitemap is currently crashing in this repo's build (reduce of undefined).
- // Keep it disabled until the underlying integration/config is fixed.
- integrations: [mdx()],
- });
|