mirror of
				https://github.com/gethomepage/homepage.git
				synced 2025-10-31 10:37:02 -04: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;
 |