Files
ember-market-frontend/next.config.mjs
2025-03-14 16:48:08 +00:00

14 lines
247 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;