Files
2025-01-08 00:00:21 +05:30

17 lines
244 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
experimental: {
ppr: true,
},
images: {
remotePatterns: [
{
hostname: 'avatar.vercel.sh',
},
],
},
};
export default nextConfig;