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