nicholai-work-2026/astro.config.mjs
nicholai cf34ada8fb Initialize web application via create-cloudflare CLI
Details:
  C3 = create-cloudflare@2.58.0
  project name = nicholai-work-2026
  framework = astro
  framework cli = create-astro@4.13.2
  package manager = pnpm@10.23.0
  wrangler = wrangler@4.53.0
  git = 2.52.0
2025-12-06 03:39:35 -07:00

20 lines
419 B
JavaScript

// @ts-check
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';
import cloudflare from '@astrojs/cloudflare';
// https://astro.build/config
export default defineConfig({
site: 'https://example.com',
integrations: [mdx(), sitemap()],
adapter: cloudflare({
platformProxy: {
enabled: true
},
imageService: "cloudflare"
}),
});