bundle install
Type the command bundle exec jekyll serve
or simply jekyll serve
.
If you include a _
in front of a filename (ex. _navBar.sass
), Jekyll will not compile that file in your _site
folder. As you can see normalize.css has an underscore before its filename, since it is not needed in the build, as it is already imported in the main sass file. I recommend prepending an underscore to all of your sass includes - but of course not your main sass file.
I hope this helps you increase productivity while coding!