Files
ipd-shomalhospital-admin-panel/next.config.ts
2026-03-26 08:11:29 +03:30

18 lines
308 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '4000',
pathname: '/uploads/**',
},
],
},
/* config options here */
};
export default nextConfig;