17 lines
300 B
TypeScript
17 lines
300 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "picsum.photos",
|
|
port: "",
|
|
pathname: "**",
|
|
},
|
|
],
|
|
},
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|