Files
blog/next.config.ts
T

14 lines
208 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
hostname: "cdn.nhcarrigan.com",
},
],
},
};
export default nextConfig;