antoncoding/monarch

View on GitHub
next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @type {import('next').NextConfig}
 */

const nextConfig = {
  reactStrictMode: true,
  images: {
    remotePatterns: [
      {
        protocol: 'https',
        hostname: 'ipfs.io',
      },
    ],
  },
};

module.exports = nextConfig;