diff --git a/middleman-more/lib/middleman-more/core_extensions/compass.rb b/middleman-more/lib/middleman-more/core_extensions/compass.rb index 2f9f98dd..dea8d14d 100644 --- a/middleman-more/lib/middleman-more/core_extensions/compass.rb +++ b/middleman-more/lib/middleman-more/core_extensions/compass.rb @@ -28,13 +28,16 @@ module Middleman config.environment = :development config.cache_path = sass_cache_path config.sass_dir = css_dir - config.additional_import_paths = sass_assets_paths config.css_dir = css_dir config.javascripts_dir = js_dir config.fonts_dir = fonts_dir config.images_dir = images_dir config.http_path = http_prefix + sass_assets_paths.each do |path| + config.add_import_path path + end + # Disable this initially, the cache_buster extension will # re-enable it if requested. config.asset_cache_buster :none