Jamjar/next.config.ts
2025-02-10 18:25:42 -05:00

22 lines
415 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
...(process.env.NEXT_PUBLIC_MODE === "DEV"
? [
{
protocol: "http" as "http",
hostname: "localhost",
},
]
: []),
],
},
};
export default nextConfig;