judge4c-old-2/next.config.ts

19 lines
333 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",
},
],
},
};
export default nextConfig;