mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 12:57:46 +00:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import { defineConfig } from 'astro/config';
|
|
import vercelServerless from '@astrojs/vercel/serverless';
|
|
|
|
export default defineConfig({
|
|
output: 'server',
|
|
adapter: vercelServerless({
|
|
imageService: true,
|
|
}),
|
|
});
|