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", };