oriyo_next/next.config.ts
2025-04-30 17:34:33 +05:00

16 lines
266 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'media.bambooapp.ai',
pathname: '/files/**',
},
],
},
};
export default nextConfig;