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