Jamjar/next.config.ts
2025-02-07 22:41:10 -05:00

14 lines
219 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;