story-research-zapwall/next.config.js
2026-01-10 09:41:57 +01:00

36 lines
679 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.nostrcheck.me',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'nostrimg.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'void.cat',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'nostr.build',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'picstr.build',
pathname: '/**',
},
],
},
}
module.exports = nextConfig