ever-given-pod/next.config.ts

10 lines
179 B
TypeScript
Raw Normal View History

2025-05-09 07:05:17 -04:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [new URL('https://placehold.co/**')],
}
2025-05-09 07:05:17 -04:00
};
export default nextConfig;