mirror of
https://codeberg.org/andyscott-pages/andyscott-dot-me.git
synced 2024-11-13 15:50:49 -05:00
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://andyscott.me',
|
|
integrations: [mdx(), sitemap(), tailwind()]
|
|
});
|