From 7a4feb1e31687abfc9a8d1d3c865ec87b47e1713 Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Sat, 13 Jul 2013 23:22:29 +1200 Subject: [PATCH] Fix http generated images path when using Compass sprites Otherwise compass uses '/source/images' for the sprite image URL --- config.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config.rb b/config.rb index 8cfcb51..408aeca 100644 --- a/config.rb +++ b/config.rb @@ -6,6 +6,7 @@ project_type = :stand_alone # Publishing paths http_path = "/" http_images_path = "/images" +http_generated_images_path = "/images" http_fonts_path = "/fonts" css_dir = "public/stylesheets"