astro/packages/integrations/vercel
2022-03-29 23:11:27 -03:00
..
src Removed changes no longer necessary 2022-03-29 23:04:53 -03:00
package.json Rework - now it's all SSR 2022-03-29 23:01:37 -03:00
README.md Updated readme 2022-03-29 23:11:27 -03:00
tsconfig.json Basic Filesystem API 2022-03-28 10:05:55 -03:00

@astrojs/vercel

Deploy your server-side rendered (SSR) Astro app to Vercel.

Use this integration in your Astro configuration file:

import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel';

export default defineConfig({
	integrations: [netlify()]
});

After you build your site the .output/ folder will contain your server-side rendered app. Since this feature is still in beta, you'll need to add this Enviroment Variable to your Vercel project: ENABLE_FILE_SYSTEM_API=1

Now you can deploy!

vercel