astro-gists/playground/astro.config.mts

8 lines
228 B
TypeScript
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-07 10:45:56 +00:00
integrations: [astroGist(),mdx()]
2024-02-24 09:47:57 +00:00
});