mirror of
				https://github.com/Mastermindzh/react-starter-kit.git
				synced 2025-11-04 02:38:47 +01:00 
			
		
		
		
	Added default output to jest (for terminal output...) Upgraded npm packages. Left jest on 27 because of breaking changes in 28
		
			
				
	
	
		
			18 lines
		
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * This is the config override file.
 | 
						|
 * This file is meant to be replaced during deployment with override values compared to the regular config.js
 | 
						|
 * For development purposes this file can be completely empty
 | 
						|
 */
 | 
						|
 | 
						|
const configOverride = {};
 | 
						|
 | 
						|
// ignore this :)
 | 
						|
try {
 | 
						|
  window.configOverride = configOverride;
 | 
						|
  if (module) {
 | 
						|
    module.exports = configOverride;
 | 
						|
  }
 | 
						|
} catch {
 | 
						|
  // ignore
 | 
						|
}
 |