judge/next.config.ts

23 lines
407 B
TypeScript
Raw Normal View History

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "seccdn.libravatar.org",
},
{
protocol: "http",
hostname: "localhost",
},
],
},
};
export default nextConfig;