astro-gists/playground/astro.config.mjs

10 lines
248 B
JavaScript

import { defineConfig } from "astro/config";
import astroGist from "@matthiesenxyz/astro-gists";
import mdx from "@astrojs/mdx"
// https://astro.build/config
export default defineConfig({
integrations: [astroGist({ verbose: true }), mdx()]
});