astro/packages/integrations/vercel
github-actions[bot] 1d0c1d8977
[ci] release (beta) (#3007)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-04-06 16:40:46 -05:00
..
src fix(integrations): astro:build:done dir now matches SSR client output (#3008) 2022-04-06 16:20:58 -04:00
CHANGELOG.md [ci] release (beta) (#3007) 2022-04-06 16:40:46 -05:00
package.json [ci] release (beta) (#3007) 2022-04-06 16:40:46 -05:00
README.md Updated readme 2022-03-31 15:12:43 -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({
	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

Now you can deploy!

vercel