next.config.mjs
338 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
},
{
protocol: "http",
hostname: "158.69.0.202",
port: "3028",
},
],
},
};
export default nextConfig;