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