2023-02-21 14:14:47 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import vercel from '@astrojs/vercel/serverless';
|
|
|
|
|
|
|
|
export default defineConfig({
|
2023-07-17 12:57:27 +00:00
|
|
|
adapter: vercel({
|
|
|
|
// Pass some value to make sure it doesn't error out
|
|
|
|
includeFiles: ['included.js']
|
|
|
|
}),
|
2023-02-21 14:14:47 +00:00
|
|
|
output: 'server'
|
|
|
|
});
|