2022-12-18 11:56:34 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-05-31 22:55:42 -04:00
|
|
|
|
2022-12-18 11:56:34 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
import svelte from "@astrojs/svelte";
|
2022-05-31 22:55:42 -04:00
|
|
|
|
2022-12-21 17:07:25 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
|
2022-12-18 11:56:34 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-12-21 17:07:25 -05:00
|
|
|
integrations: [tailwind(), svelte(), mdx()]
|
2022-12-18 11:56:34 -05:00
|
|
|
});
|