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({ site: "https://hullcss.org", integrations: [tailwind(), mdx(), partytown(), sitemap(), prefetch()], output: "server", adapter: cloudflare(), redirects: { "/links/testing": "https://hullcss.org/links", } });