ironie-nextjs/next.config.ts
2025-05-28 00:41:38 +02:00

17 lines
283 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.steamstatic.com',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;