1 2 3 4 5 6 7 8 9 10
import vercel from '@astrojs/vercel'; import { defineConfig } from 'astro/config'; export default defineConfig({ adapter: vercel({ // Pass some value to make sure it doesn't error out includeFiles: ['included.js'], }), output: 'server' });