diff --git a/next.config.js b/next.config.js index 3d7c303..af1a759 100644 --- a/next.config.js +++ b/next.config.js @@ -7,6 +7,35 @@ const nextConfig = { // Désactiver la vérification TypeScript lors du build ignoreBuildErrors: 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