mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
52209ca2ad
* refactor: remove experimental.cc from core * chore: remove experimental flag from tests * fix: mock contentDir in remark tests * fix: check vfile.path in rel-image-error plugin * fix: move .astro/ excludes to all test/fixtures * fix: include test/**/fixtures in ignore * chore: changeset
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://example.com',
|
|
integrations: [mdx(), sitemap()],
|
|
});
|