astro-gists/playground/astro.config.mjs

10 lines
231 B
JavaScript
Raw Normal View History

2024-02-24 02:44:44 +00:00
import { defineConfig } from "astro/config";
2024-02-24 09:47:57 +00:00
import astroGist 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({
2024-03-22 08:48:20 +00:00
integrations: [astroGist(), mdx()]
});