1234567891011121314151617 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- reactStrictMode: true,
- images: {
- unoptimized: true,
- domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com"],
- remotePatterns: [
- {
- protocol: "https",
- hostname: "**.vercel.app",
- },
- ],
- },
- };
- export default nextConfig;
|