next.config.mjs
331 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
// {
// protocol: "http",
// hostname: "localhost",
// },
{
protocol: "https",
hostname: "api.advith.io",
},
],
},
};
export default nextConfig;