From 3b059991eacdf401e2153b28be707b5e6389184a Mon Sep 17 00:00:00 2001 From: Kyle Truscott Date: Thu, 13 Oct 2016 11:53:31 -0400 Subject: [PATCH] Respect `rootURL` when rendering stylesheet link in head. --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index f18a494..9f1d4e4 100644 --- a/index.js +++ b/index.js @@ -17,9 +17,9 @@ module.exports = { this._super.included.apply(this, arguments); }, - contentFor: function(type) { + contentFor: function(type, config) { if (type === 'head') { - return ''; + return ``; } },