next.config.ts 219 B

1234567891011121314
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. images: {
  4. remotePatterns: [
  5. {
  6. protocol: "https",
  7. hostname: "**",
  8. },
  9. ],
  10. },
  11. };
  12. export default nextConfig;