aidxnCC/next.config.ts

29 lines
561 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'p0ntus.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'github-readme-stats.vercel.app',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '*.archive.org',
port: '',
pathname: '/**',
},
],
dangerouslyAllowSVG: true,
},
};
export default nextConfig;