Jamjar/next.config.ts
2025-01-20 00:37:30 -05:00

17 lines
300 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "static-cdn.jtvnw.net",
port: "",
pathname: "/**",
search: "",
},
],
},
};
export default nextConfig;