blob: 74782fd377e36959157f368e7cd4b4024c04d3c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// @ts-check
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
site: "https://ludicrousavengersofridiculousshenanigans.tech",
base: "astro-blog",
integrations: [mdx(), sitemap()],
});
|