blob: 109c261d9cd3fbe6bd5ab3cb1c12bd59ec5c6dac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import vercel from '@astrojs/vercel';
import { defineConfig } from 'astro/config';
export default defineConfig({
output: "server",
adapter: vercel({
maxDuration: 60
})
});
|