16 lines
485 B
TypeScript
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;
|