23 lines
407 B
TypeScript
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;
|