Files
jessy-david.dev/next.config.ts
T

19 lines
390 B
TypeScript
Raw Normal View History

2025-11-24 14:25:27 +01:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-11-25 05:43:26 +01:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "github.com",
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
],
},
2025-11-24 14:25:27 +01:00
};
export default nextConfig;