rsnext/examples/cms-sanity/next.config.js
Steven 4cc7f11da2
Update to stable: next/future/image, remotePatterns, unoptimized (#40142)
This PR updates a few features from experimental to stable status:

- `next/future/image` component
- `remotePatterns` configuration
- `unoptimized` configuration
2022-08-31 22:44:17 +00:00

9 lines
188 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{ hostname: 'cdn.sanity.io' },
{ hostname: 'source.unsplash.com' },
],
},
}