venice / next.config.mjs
divyamagrawal06's picture
Mirror Venice frontend
6fffa8d verified
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
},
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;