oriyo_next/next.config.ts
2025-05-15 14:46:39 +05:00

21 lines
373 B
TypeScript

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