astro-gists/playground/astro.config.mts

7 lines
191 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-02-24 02:44:44 +00:00
// https://astro.build/config
export default defineConfig({
2024-02-24 09:47:57 +00:00
integrations: [astroGist()]
});