fix(vercel): Fix typo in README 🤦‍♀️ (#7208)

This commit is contained in:
Erika 2023-05-25 14:59:25 +02:00 committed by GitHub
parent ea16570b1e
commit f5a8cffac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'@astrojs/vercel': patch
---
Fix `imagesConfig` being wrongly spelt as `imageConfig` in the README

View file

@ -108,7 +108,7 @@ export default defineConfig({
});
```
### imageConfig
### imagesConfig
**Type:** `VercelImageConfig`<br>
**Available for:** Edge, Serverless, Static
@ -124,7 +124,7 @@ import vercel from '@astrojs/vercel/static';
export default defineConfig({
output: 'server',
adapter: vercel({
imageConfig: {
imagesConfig: {
sizes: [320, 640, 1280]
}
})