2022-03-25 16:08:02 +00:00
# @astrojs/netlify
Deploy your server-side rendered (SSR) Astro app to [Netlify ](https://www.netlify.com/ ).
2022-04-05 15:25:48 +00:00
Use this adapter in your Astro configuration file, alongside a valid deployment URL:
2022-03-25 16:08:02 +00:00
```js
import { defineConfig } from 'astro/config';
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
2022-04-05 15:25:48 +00:00
adapter: netlify(),
2022-03-25 16:08:02 +00:00
});
```
After you build your site the `netlify/` folder will contain [Netlify Functions ](https://docs.netlify.com/functions/overview/ ) in the `netlify/functions/` folder.
Now you can deploy!
```shell
netlify deploy
```
## Configuration
2022-04-05 15:25:48 +00:00
### dist
We build to a `netlify` directory at the base of your project. To change this, use the `dist` option:
2022-03-25 16:08:02 +00:00
```js
import { defineConfig } from 'astro/config';
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
adapter: netlify({
dist: new URL('./dist/', import.meta.url)
})
});
```
And then point to the dist in your `netlify.toml` :
```toml
[functions]
directory = "dist/functions"
```