mirror of
https://litchi.icu/ngc2207/judge.git
synced 2025-05-18 21:06:33 +00:00
23 lines
407 B
TypeScript
23 lines
407 B
TypeScript
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;
|