Files
gitlab-instance-0a899031_salon/next.config.ts
2026-03-16 01:09:13 -05:00

16 lines
485 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{ protocol: "https", hostname: "picsum.photos", pathname: "/**" },
{ protocol: "https", hostname: "i.pravatar.cc", pathname: "/**" },
{ protocol: "https", hostname: "images.unsplash.com", pathname: "/**" },
{ protocol: "https", hostname: "sns-webpic-qc.xhscdn.com", pathname: "/**" },
],
},
};
export default nextConfig;