Files
tenext-next/next.config.ts
2026-07-30 12:58:31 +05:30

15 lines
247 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "8ded8880.delivery.rocketcdn.me",
},
],
},
};
export default nextConfig;