11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "images.unsplash.com" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|