full-stack-school/next.config.mjs
2026-03-01 18:32:49 +00:00

9 lines
167 B
JavaScript

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