14 lines
322 B
TypeScript
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;
|