19 lines
		
	
	
		
			279 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			279 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type { NextConfig } from "next";
 | 
						|
 | 
						|
const nextConfig: NextConfig = {
 | 
						|
  /* config options here */
 | 
						|
};
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  images: {
 | 
						|
    remotePatterns: [
 | 
						|
      {
 | 
						|
        protocol: "https",
 | 
						|
        hostname: "placehold.co",
 | 
						|
      },
 | 
						|
    ],
 | 
						|
  },
 | 
						|
}
 | 
						|
 | 
						|
export default nextConfig;
 |