16 lines
244 B
TypeScript
16 lines
244 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
ppr: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "avatar.vercel.sh",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|