forked from davidrapson/scss-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
36 lines (28 loc) · 1.07 KB
/
config.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# COMPASS CONFIG
# http://compass-style.org/help/tutorials/configuration-reference/
# Plugins
# =======
# Require any compass plugins you need
# Plugin: Stitch CSS
# URL: http://stitchcss.com/
# Github: https://github.com/anthonyshort/stitch-css
# require 'stitch'
# Config
# ======
project_type = :stand_alone # :stand_alone or :rails
environment = :development # :production or :development
preferred_syntax = :scss # :sass or :scss
http_path = "/"
css_dir = "style"
sass_dir = "style/scss"
images_dir = "img"
relative_assets = true
# Disable query vars image.png?1234 when using asset helpers, e.g., image-url()
asset_cache_buster :none
# Defaults to false in production mode, true in development mode.
line_comments = false
# Uncomment this line if you want to debug using FireSass
# sass_options = {:debug_info => true}
# Choose your output style, :nested, :extended, :compact, :compressed
output_style = (environment == :production) ? :compressed : :expanded
# To call: compass compile -e production -s compressed --force