2

Noob here. Recently setup jekyll with github pages and the site is functioning on the github server however, since i pushed to github I am now having problems when I enter jekyll serve in to the shell and make any changes in my blog posts md files. The following message appears in the command line and a 404 page not found on my local server... All I did was add some content to one of my posts.. Didn't change any front matter either, have since undone any changes and still i get the same error...

tim@ubuntu16:~/github/blog$ jekyll serve

Configuration file: /home/tim/github/blog/_config.yml Source: /home/tim/github/blog Destination: /home/tim/github/blog/_site Incremental build: disabled. Enable with --incremental Generating... done in 0.199 seconds. Auto-regeneration: enabled for '/home/tim/github/blog' Server address: http://127.0.0.1:4000blog/ Server running... press ctrl-c to stop. [2018-04-08 21:56:21] ERROR/' not found.

[2018-04-08 21:56:21] ERROR /blog/assets/main.css' not found. [2018-04-08 21:56:21] ERROR/blog/assets/minima-social-icons.svg' not found. `

`

Tim Dowd
  • 205
  • 4
  • 12

1 Answers1

3

This is where it breaks : "Server address: http://127.0.0.1:4000blog/"

In _config.yml, set baseurl: /blog

David Jacquel
  • 51,670
  • 6
  • 121
  • 147