oriyo_next/next.config.ts
2026-06-01 23:18:12 +05:00

21 lines
373 B
TypeScript

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