File size: 231 Bytes
dce7eca
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
    /* config options here */
    images: {
        domains: ["lh3.googleusercontent.com"], // For Google profile pics
    },
};

export default nextConfig;