17 lines
272 B
TypeScript
17 lines
272 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
experimental: {
|
|
ppr: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 'avatar.vercel.sh',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|