rsnext/test/e2e/app-dir/next-image/next.config.js
Steven d32121b736
chore(test): test remote image from proxy (#56895)
This PR adds a test to ensure we don't regress again when using proxies
in front of Next.js with `connection: 'upgrade'`.

- Regression introduced in https://github.com/vercel/next.js/pull/56226
- Issue reported in https://github.com/vercel/next.js/issues/56038
- Rolled back in https://github.com/vercel/next.js/pull/56836
2023-10-16 14:48:29 -04:00

5 lines
112 B
JavaScript

module.exports = {
images: {
remotePatterns: [{ hostname: 'image-optimization-test.vercel.app' }],
},
}