From 82e98f4fceb061b5290930cfb4ab14344231c8d4 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Wed, 21 Jan 2026 09:47:19 +0100 Subject: [PATCH] feat(config): add support for remote image domains in Next.js config - Enabled `images.remotePatterns` to allow loading images from `memegoat.fr` and `api.memegoat.fr`. --- frontend/next.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 1a529f0..ab82892 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -3,6 +3,18 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ reactCompiler: true, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "memegoat.fr", + }, + { + protocol: "https", + hostname: "api.memegoat.fr", + }, + ], + }, output: "standalone", };