I have a blank Astro build with the following config:
import { defineConfig } from 'astro/config';
import vercelServerless from '@astrojs/vercel/serverless';
export default defineConfig({
// Vercel
output: "server",
adapter: vercelServerless()
});
But no matter what I do, whenever I push to Vercel I get the following error in the logs:
RequestId: bd47d600-5cd0-479f-a59f-1e50d4a9c103 Error: Runtime exited with error: exit status 1
Runtime.ExitError
Any advice on how to resolve this would be appreciated.