This repository has been archived on 2025-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
aidxnCC/next.config.ts

29 lines
561 B
TypeScript
Raw Normal View History

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