Files
2025-03-22 00:12:40 -05:00

15 lines
229 B
TypeScript

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