astro/examples/blog/astro.config.mjs

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

11 lines
263 B
JavaScript
Raw Normal View History

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