ginb
Version:
Write & Share all in GitHub
25 lines (23 loc) • 440 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "github.com",
port: "",
},
{
protocol: "https",
hostname: "**.github.com",
port: "",
},
{
protocol: "https",
hostname: "**.githubusercontent.com",
port: "",
},
],
},
};
module.exports = nextConfig;