user3126277
user3126277

Reputation:

Setting up SASS with jekyll?

I've been trying to setup SASS (and Bourbon.io) with jekyll for a personal blog on github pages.

I've changed the name of the css folder that is installed with jekyll to stylesheets and within stylesheets I have two folders, css and sass.

I start my jekyll server locally with: jekyll serve --watch

Then in another terminal window: sass --watch stylesheets/sass:stylesheets/css

But I am now getting the following message:

`/' not found.

Prior to attempting to setup SASS with my jekyll project, my site was displaying. Any links for setting up sass with jekyll would be helpful. Thanks.

Upvotes: 1

Views: 4726

Answers (3)

Jonathan
Jonathan

Reputation: 11494

This happens usually if you have messed with the site baseurl in the _config.xml and it can no longer resolve itself to find the index.html.

Upvotes: 0

Seth Warburton
Seth Warburton

Reputation: 2413

New in Jekyll 2.0 is native processing of Sass and CoffeeScript:

http://jekyllrb.com/docs/assets/#sassscss

Upvotes: 3

Cruznick
Cruznick

Reputation: 53

hope not being to late, for what you are pretending there are many approaches for example i use bourbon, neat in a jekyll project and use grunt tasks for local development. Another option is to use a rakefile with some task to handle both programs (jekyll and sass) or as favrizio suggested use jekyll's pluging.

I reccomend you to take a look to grunt.

Upvotes: 0

Related Questions