hullcss-astro/astro.config.mjs

15 lines
473 B
JavaScript

import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import partytown from "@astrojs/partytown";
import sitemap from "@astrojs/sitemap";
import prefetch from "@astrojs/prefetch";
import cloudflare from "@astrojs/cloudflare";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), mdx(), partytown(), sitemap(), prefetch()],
output: "server",
adapter: cloudflare()
});