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