mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
a198028b04
* Fixes cloudflare throwing over process * Up the timeout for slower CI servers * Fix linting * Up the timeout a bit
7 lines
169 B
JavaScript
7 lines
169 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import cloudflare from '@astrojs/cloudflare';
|
|
|
|
export default defineConfig({
|
|
adapter: cloudflare(),
|
|
output: 'server',
|
|
});
|