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
When using the baseURL of "/" (as recommended in a number of places, including here), the main.css file is attempting to be loaded from http://styles/main.css, which obviously doesn't resolve anywhere.
However setting the baseURL to / actually uncovers additional problems. For example, og:url is equal to .Site.BaseURL which it seems should be a full url with domain/protocol, but in this case would be just a /.
When using the baseURL of "/" (as recommended in a number of places, including here), the
main.css
file is attempting to be loaded fromhttp://styles/main.css
, which obviously doesn't resolve anywhere.Here's the relevant line of code: https://github.com/tomanistor/osprey/blob/master/layouts/partials/header.html#L74
I fixed this by changing it to the following:
I simply removed the leading
/
beforestyles/
, so it would load from[baseUrl]/styles/main.css
.Cheers,
Aaron (insp3ctre)
The text was updated successfully, but these errors were encountered: