beactio-landing/next.config.mjs
2025-01-13 07:08:59 +07:00

9 lines
190 B
JavaScript

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