From 3009c4664f62098d44548f5c33f80d8de7c4999c Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Mon, 5 Jan 2026 23:14:47 +0100 Subject: [PATCH] Fix: profil image2 --- next.config.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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