/* eslint-env node */ 'use strict'; module.exports = { name: 'startup', isDevelopingAddon: function() { return true; }, contentFor: function(type, config) { switch (type) { case 'body': return ``; case 'root-class': return 'ember-loading'; } }, };