astro/examples/blog/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
211 B
JavaScript
Raw Normal View History

2022-07-12 16:20:08 +00:00
import { defineConfig } from 'astro/config';
2022-08-11 22:30:55 -07:00
import image from '@astrojs/image';
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
2022-08-11 22:30:55 -07:00
integrations: [image(), mdx()]
});