beactio-landing/next.config.mjs

9 lines
190 B
JavaScript
Raw Normal View History

2025-01-13 07:08:59 +07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [{ hostname: "localhost" }, { hostname: "randomuser.me" }],
},
};
export default nextConfig;