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";
|
2021-08-23 14:07:03 -07:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-08-11 22:30:55 -07:00
|
|
|
integrations: [image(), mdx()]
|
|
|
|
});
|