astro/packages/integrations/vercel/test/fixtures/functionPerRoute/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
196 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
adapter: vercel({
functionPerRoute: true
}),
output: "server"
});