forked from AmoebaLabs/presentations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
41 lines (28 loc) · 739 Bytes
/
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
###
# Page options, layouts, aliases and proxies
###
page "index.html", :layout => 'plain'
###
# Helpers
###
# Automatic image dimensions on image_tag helper
activate :automatic_image_sizes
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
set :js_assets_paths, %w(vendor)
# Build-specific configuration
configure :build do
# For example, change the Compass output style for deployment
activate :minify_css
# Minify Javascript on build
activate :minify_javascript
# Enable cache buster
# activate :cache_buster
# Use relative URLs
# activate :relative_assets
set :http_prefix, '/presentations'
# Compress PNGs after build
require "middleman-smusher"
activate :smusher
end