next.config.js 368 B

12345678910111213141516
  1. // Notice that currently nft images from all domains can be fetched.
  2. // This is not recommended for production use since there could be some security issues.
  3. /** @type {import('next').NextConfig} */
  4. const nextConfig = {
  5. images: {
  6. remotePatterns: [
  7. {
  8. protocol: 'https',
  9. hostname: '**',
  10. },
  11. ],
  12. },
  13. };
  14. module.exports = nextConfig;