27 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
 | 
						|
 * for Docker builds.
 | 
						|
 */
 | 
						|
import "./src/env.js";
 | 
						|
 | 
						|
const nextConfig = {
 | 
						|
  reactStrictMode: true,
 | 
						|
  eslint: {
 | 
						|
    ignoreDuringBuilds: true,
 | 
						|
  output: "standalone",
 | 
						|
  },
 | 
						|
  images: {
 | 
						|
    remotePatterns: [
 | 
						|
      {
 | 
						|
        protocol: "https",
 | 
						|
        hostname: "cdn.discordapp.com",
 | 
						|
        port: "",
 | 
						|
        pathname: "/**",
 | 
						|
      },
 | 
						|
    ],
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
export default nextConfig;
 |