14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "images.unsplash.com", pathname: "/**" },
|
|
{ protocol: "https", hostname: "images.pexels.com", pathname: "/**" },
|
|
{ protocol: "https", hostname: "cf.bstatic.com", pathname: "/**" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|