15 lines
228 B
TypeScript
15 lines
228 B
TypeScript
|
import type { NextConfig } from "next";
|
||
|
|
||
|
const nextConfig: NextConfig = {
|
||
|
images: {
|
||
|
remotePatterns: [
|
||
|
{
|
||
|
protocol: "https",
|
||
|
hostname: "dummyimage.com",
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default nextConfig;
|