- Enabled `images.remotePatterns` to allow loading images from `memegoat.fr` and `api.memegoat.fr`.
22 lines
347 B
TypeScript
22 lines
347 B
TypeScript
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;
|