-
-
Save moxdev/cf34ed3b50a44864fd3cf610b76855f5 to your computer and use it in GitHub Desktop.
Bourbon based SASS config and debug options After import the config file, you can call bourbon as @import "bourbon"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# define bourbon path, use a common library for preventing duplicates | |
add_import_path "path/to/your/bourbon/lib" | |
### -->> project paths, delete/comment if you use scout, codekit etc. | |
environment = :production # removes single line comments, keeps css comments | |
output_style = :compact | |
css_dir = "styles" #relative to project root | |
sass_dir = "styles-sass" #relative to project root | |
images_dir = "images" #relative to project root | |
javascripts_dir = "scripts" #relative to project root | |
### <<-- project paths, ignore/comment if you use scout.app or codekit etc. | |
# where the fonts resides | |
fonts_dir = "fonts" | |
# for debug options in chrome web developer tools | |
sass_options = { | |
:debug_info => true, | |
:sourcemap => true #with SASS > 3.3 http://benfrain.com/add-sass-compass-debug-info-for-chrome-web-developer-tools/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good bourbon starter file