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