Personal-Site/astro.config.mjs
Thomas Cole 1f00bfa07b
Some checks failed
Build Site / Build-Site (18.x) (push) Failing after 37s
updated dependencies, tweaked things, added particles
2023-12-12 12:27:06 -05:00

11 lines
353 B
JavaScript

import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import svelte from "@astrojs/svelte";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
site: 'https://thomaspcole.com',
integrations: [tailwind(), svelte(), mdx(), sitemap()]
});