client-vosel-soviro/next.config.mjs
2025-01-30 07:42:18 +07:00

10 lines
222 B
JavaScript

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