TKK_E32222530/next.config.ts

29 lines
525 B
TypeScript

const nextConfig = {
devIndicators: false,
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "placehold.co",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "res.cloudinary.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "upload.wikimedia.org",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;