next.config.ts 371 B

1234567891011121314151617
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. reactStrictMode: true,
  4. images: {
  5. unoptimized: true,
  6. domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com"],
  7. remotePatterns: [
  8. {
  9. protocol: "https",
  10. hostname: "**.vercel.app",
  11. },
  12. ],
  13. },
  14. };
  15. export default nextConfig;