import { defineConfig } from "astro/config"; import mdx from "@astrojs/mdx"; // https://astro.build/config export default defineConfig({ site: "https://simo.ng", // @astrojs/sitemap currently crashes against this Astro 6 build output // (reduce of undefined in astro:build:done), so sitemap.xml is generated // by src/pages/sitemap.xml.ts instead. integrations: [mdx()], });