10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [new URL('https://placehold.co/**')],
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|