mirror of
				https://github.com/gethomepage/homepage.git
				synced 2025-11-03 19:17:03 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const { i18n } = require("./next-i18next.config");
 | 
						|
 | 
						|
/** @type {import('next').NextConfig} */
 | 
						|
const nextConfig = {
 | 
						|
  reactStrictMode: true,
 | 
						|
  output: "standalone",
 | 
						|
  swcMinify: false,
 | 
						|
  images: {
 | 
						|
    domains: ["cdn.jsdelivr.net"],
 | 
						|
    unoptimized: true,
 | 
						|
  },
 | 
						|
  i18n,
 | 
						|
};
 | 
						|
 | 
						|
module.exports = nextConfig;
 |