Netlify Status

License: MIT

Development

How to compile SASS

  1. Make sure you have SASS installed.

     $ sass -v
    

If you don't, install it here: http://sass-lang.com/install

  1. Once installed, navigate to the CSS directory in your project:

     $ cd /{project}/assets/css
    
  2. Run the following command to compile/watch the SCSS directory for changes.

     $ sass --watch scss/style.scss:style.css
    

Note that this does not live reload the project.