From d62843144e16dc61b1e192cf6270e2f942e88087 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 6 Oct 2014 20:37:07 -0400 Subject: [PATCH] Tell Rack to cache /assets --- website/config.ru | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/config.ru b/website/config.ru index 5cf4e322d..fd8f01d6c 100644 --- a/website/config.ru +++ b/website/config.ru @@ -12,7 +12,7 @@ use Rack::Deflater # to do. use Rack::StaticCache, :root => "build", - :urls => ["/images", "/javascripts", "/stylesheets"], + :urls => ["/assets"], :duration => 2, :versioning => false