fix(vercel): Fix typo in README 🤦♀️ (#7208)
This commit is contained in:
parent
ea16570b1e
commit
f5a8cffac2
2 changed files with 7 additions and 2 deletions
5
.changeset/plenty-geese-fold.md
Normal file
5
.changeset/plenty-geese-fold.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@astrojs/vercel': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix `imagesConfig` being wrongly spelt as `imageConfig` in the README
|
|
@ -108,7 +108,7 @@ export default defineConfig({
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
### imageConfig
|
### imagesConfig
|
||||||
|
|
||||||
**Type:** `VercelImageConfig`<br>
|
**Type:** `VercelImageConfig`<br>
|
||||||
**Available for:** Edge, Serverless, Static
|
**Available for:** Edge, Serverless, Static
|
||||||
|
@ -124,7 +124,7 @@ import vercel from '@astrojs/vercel/static';
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
output: 'server',
|
output: 'server',
|
||||||
adapter: vercel({
|
adapter: vercel({
|
||||||
imageConfig: {
|
imagesConfig: {
|
||||||
sizes: [320, 640, 1280]
|
sizes: [320, 640, 1280]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue