mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
module.exports = function(/* environment, appConfig */) {
 | 
						|
  return {
 | 
						|
    // Since ember-metrics automatically removes all unused adapters, which
 | 
						|
    //   will happen because we are using lazy initialization for API keys
 | 
						|
    //   and not specifying adapter props at build time, the ffg forces the
 | 
						|
    //   inclusion of the adapter's we currently support.
 | 
						|
    'ember-metrics': {
 | 
						|
      includeAdapters: ['piwik']
 | 
						|
    }
 | 
						|
  };
 | 
						|
};
 |