19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "res.cloudinary.com",
|
|
},
|
|
{ protocol: "https", hostname: "picsum.photos" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|