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";
|
|
|
|
|
2023-04-17 10:21:36 -04:00
|
|
|
// https://astro.build/config
|
|
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
|
2022-12-18 11:56:34 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2023-04-17 10:21:36 -04:00
|
|
|
site: 'https://thomaspcole.com',
|
|
|
|
integrations: [tailwind(), svelte(), mdx(), sitemap()]
|
2022-12-18 11:56:34 -05:00
|
|
|
});
|