/* eslint-env node */ 'use strict'; module.exports = { name: 'startup', contentFor: function(type, config) { switch (type) { case 'body': const enterprise = config.CONSUL_BINARY_TYPE !== 'oss' && config.CONSUL_BINARY_TYPE !== ''; return `${ enterprise ? `` : '' }`; case 'root-class': return 'ember-loading'; } }, };