astro/packages/integrations/vercel
2022-04-21 14:24:09 -07:00
..
src feat(vercel): added warning when ENABLE_FILE_SYSTEM_API=1 is missing (#3139) 2022-04-18 19:19:46 -03:00
CHANGELOG.md [ci] release (#3120) 2022-04-19 11:30:34 -04:00
package.json [ci] update lockfile (#3153) 2022-04-20 09:42:31 -04:00
README.md Update README.md 2022-04-21 14:24:09 -07: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({
	adapter: vercel()
});

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. Learn how to set enviroment variables.

Now you can deploy!

vercel

Limitations

By default, Vercel doesn't include npm installed files & packages from your project's ./node_modules folder. To address this, the @astrojs/vercel adapter automatically bundles your final build output using esbuild. There is no action needed on your part to enable this, but be aware that some complex packages (example: puppeteer) do not support bundling and therefore will not work properly with this adapter.