astro/.changeset/blue-rocks-smoke.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
329 B
Markdown
Raw Normal View History

---
'astro': patch
'@astrojs/netlify': patch
'@astrojs/node': patch
---
Netlify Adapter
This change adds a Netlify adapter that uses Netlify Functions. You can use it like so:
```js
import { defineConfig } from 'astro/config';
import netlify from '@astrojs/netlify';
export default defineConfig({
adapter: netlify()
});
```