6d8aa4b61f
* Add cf and cache properties to runtime * add changeset * reorder import * fix types and add tests * fix package name * test
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import cloudflare from '@astrojs/cloudflare';
|
|
|
|
|
|
export default defineConfig({
|
|
adapter: cloudflare(),
|
|
output: 'server',
|
|
});
|