Files
about-us/next.config.ts

19 lines
317 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "techmasters.space",
},
{
protocol: "https",
hostname: "tech-masters.guru",
},
],
},
};
export default nextConfig;