You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This results in <link>s pointing to the vendor CSS files' original locations, but they are not actually outputted there.
I thought merely commenting out the forEach block would solve this, but that gets rid of every CSS file, and I just end up with a blank page. Swapping it out for the last element in the styles array, which points to the compiled vendor/app CSS, fixes it (type="text/css" removed because it is redundant with a properly configured MIME type and discouraged in HTML5):
Per the Gruntfile, all of the vendor CSS files are concatenated into the main stylesheet:
Yet, index.html still includes them all individually:
This results in
<link>
s pointing to the vendor CSS files' original locations, but they are not actually outputted there.I thought merely commenting out the
forEach
block would solve this, but that gets rid of every CSS file, and I just end up with a blank page. Swapping it out for the last element in the styles array, which points to the compiled vendor/app CSS, fixes it (type="text/css"
removed because it is redundant with a properly configured MIME type and discouraged in HTML5):It could also be solved by modifying the Gruntfile, but I couldn't use arrays in the ways I expected to there for some reason.
The text was updated successfully, but these errors were encountered: