astro-gists/playground/astro.config.mjs

10 lines
233 B
JavaScript
Raw Normal View History

2024-02-24 02:44:44 +00:00
import { defineConfig } from "astro/config";
import astroGists from "@matthiesenxyz/astro-gists";
2024-03-07 10:45:56 +00:00
import mdx from "@astrojs/mdx"
2024-02-24 09:47:57 +00:00
2024-02-24 02:44:44 +00:00
// https://astro.build/config
export default defineConfig({
integrations: [astroGists(), mdx()]
});