This commit is contained in:
eric
2026-03-15 22:57:54 -05:00
parent 39803739bb
commit 4ed10176e7
16 changed files with 442 additions and 169 deletions

View File

@@ -2,6 +2,12 @@ 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;