2022-03-29 21:11:27 -05:00
# @astrojs/vercel
2022-03-28 08:05:55 -05:00
2022-03-29 21:11:27 -05:00
Deploy your server-side rendered (SSR) Astro app to [Vercel ](https://www.vercel.com/ ).
2022-03-28 08:05:55 -05:00
2022-03-29 21:11:27 -05:00
Use this integration in your Astro configuration file:
2022-03-28 08:05:55 -05:00
```js
import { defineConfig } from 'astro/config';
2022-03-29 21:11:27 -05:00
import vercel from '@astrojs/vercel';
2022-03-28 08:05:55 -05:00
export default defineConfig({
2022-03-31 13:12:43 -05:00
adapter: vercel()
2022-03-28 08:05:55 -05:00
});
```
2022-03-29 21:11:27 -05:00
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`
2022-03-28 08:05:55 -05:00
Now you can deploy!
```shell
2022-03-29 21:11:27 -05:00
vercel
2022-03-28 08:05:55 -05:00
```