astro/examples/blog/astro.config.mjs

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

10 lines
247 B
JavaScript
Raw Normal View History

2022-07-12 16:20:08 +00:00
import { defineConfig } from 'astro/config';
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-15 04:26:33 +00:00
site: 'https://example.com',
2022-08-15 04:28:38 +00:00
integrations: [mdx(), sitemap()],
});