12345678910111213141516 |
- // Notice that currently nft images from all domains can be fetched.
- // This is not recommended for production use since there could be some security issues.
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- images: {
- remotePatterns: [
- {
- protocol: 'https',
- hostname: '**',
- },
- ],
- },
- };
- module.exports = nextConfig;
|