-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.rb
51 lines (36 loc) · 1.31 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# ---------------------------------------------------------
# Require any additional compass plugins here.
# ---------------------------------------------------------
# Add them in place of this comment
# ---------------------------------------------------------
# Set your environment (":development" or ":production")
# Using this, we adjust a few other rules further down.
# ---------------------------------------------------------
environment = :development
# ---------------------------------------------------------
# Path rules
# ---------------------------------------------------------
http_path = "/"
css_dir = "_/css"
sass_dir = "_/sass"
images_dir = "_/img"
javascripts_dir = "_/js"
# ---------------------------------------------------------
# Global rules
# ---------------------------------------------------------
relative_assets = true
# ---------------------------------------------------------
# Adjust rules based on the environment setting from above
# ---------------------------------------------------------
# Development
if environment == :development
line_comments = true
output_style = :nested
sass_options = { :debug_info => false } # make true to debug
end
# Production
if environment == :production
line_comments = false
output_style = :compressed
sass_options = { :debug_info => false }
end