summaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: fc681bfc30ef09ca765c23b4e06bd1471cc4f30f (plain)
1
2
3
4
5
6
7
8
9
10
// @ts-check
import { defineConfig } from 'astro/config';

import cloudflare from '@astrojs/cloudflare';

// https://astro.build/config
export default defineConfig({
  output: 'server',
  adapter: cloudflare()
});