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
20 lines
419 B
JavaScript
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"
|
|
}),
|
|
}); |