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