summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/fixtures/middleware-without-edge-file/astro.config.mjs
blob: 33910b50a6e8b592c1395df3418a23c2f514cca2 (plain) (blame)
1
2
3
4
5
6
7
8
9
import {defineConfig} from "astro/config";
import vercel from "@astrojs/vercel/serverless";

export default defineConfig({
    adapter: vercel({
        edgeMiddleware: true
    }),
    output: 'server'
});