Skip to content Skip to sidebar Skip to footer

Local Jekyll Serve/live Site Discrepancy

I am creating a jekyll blog to host on my github.io account using a theme. The problem is simple: when I run 'jekyll serve' the site generates locally as it should with no issues.

Solution 1:

Looks like you're requesting assets with http://, but serving your site on https://. Browsers don't like that. Use your browser developer tools to see the errors.

Although I can't be sure without a repo URL, you've probably got something like this set in your _config.yml:

url: http://spirited-away.github.io/

Change it to:

url: https://spirited-away.github.io/

Post a Comment for "Local Jekyll Serve/live Site Discrepancy"