www/astro.config.mjs
eveeifyeve fcf4e6248d chore: removed astro cloudflare adapter
I added wrangler which is only needed for cloudflare pages.
2024-12-10 20:21:49 +11:00

8 lines
194 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
});