Files
gitlab-instance-0a899031_salon/next.config.ts
2026-03-15 22:57:54 -05:00

14 lines
322 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: "/**" },
],
},
};
export default nextConfig;