Files
pozor/next.config.ts
2026-06-05 02:54:22 +03:00

23 lines
407 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "raw.githubusercontent.com"
},
{
protocol: "https",
hostname: "github.com"
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com"
}
]
}
};
export default nextConfig;