summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/hosted/hosted-astro-project/astro.config.mjs
blob: e84f7fda5679410606cd2953d44f6ebdda3d706a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import vercel from '@astrojs/vercel/serverless';
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
	output: 'server',
	adapter: vercel(),
	experimental: {
		assets: true,
	},
});