Optimize images at Vercel's Edge Network
When deploying your nuxt applications to Vercel platform, image module can use Vercel's Edge Network to optimize images on demand.
This provider will be enabled by default in vercel deployments.
To use external URLs (images not in static/
directory), hostnames should be whitelisted.
Example:
export default { image: { domains: [ 'avatars0.githubusercontent.com' ] }}
Specify any custom width
property you use in <nuxt-img>
, <nuxt-picture>
and $img
.
If a width is not defined, image will fallback to closest possible width.
Example:
export default { image: { screens: { icon: 40, avatar: 24 } }}