Files
poyraz-portfolio/next.config.ts
T

15 lines
234 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "ghchart.rshah.org",
},
],
},
};
export default nextConfig;