www/astro.config.mjs
mr. M c40e516973
Some checks are pending
Upload to bunny / upload (1.22.3) (push) Waiting to run
feat: add author link function, integrate Cloudflare adapter, and enhance layout with new HomeExtras component
2024-12-10 00:44:49 +01:00

12 lines
No EOL
266 B
JavaScript

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