Files
ATS-HRMS/next.config.ts
2025-12-06 00:56:15 +05:30

23 lines
414 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "www.alucoildesign.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
},
],
},
};
export default nextConfig;