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

30 lines
544 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: 'lastfm.freetls.fastly.net',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'p0ntus.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'github-readme-stats.vercel.app',
port: '',
pathname: '/**',
},
],
},
2025-01-05 14:33:52 -05:00
};
2025-01-08 09:33:27 -05:00
export default nextConfig;