mirror of
				https://github.com/ajnart/homarr.git
				synced 2025-11-03 20:15:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const { env } = require('process');
 | 
						|
 | 
						|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
 | 
						|
  enabled: process.env.ANALYZE === 'true',
 | 
						|
});
 | 
						|
 | 
						|
module.exports = withBundleAnalyzer({
 | 
						|
  reactStrictMode: false,
 | 
						|
  output: 'standalone',
 | 
						|
});
 |