remove media from the list of static folders (fix request locomotivecms/wagon#304)
did
committed Apr 20, 2016
commit 10aff4cbc3d84a80e3137ded81026b2452ce160f
Showing 1
changed file with
1 additions
and 1 deletions
locomotive/steam/server.rb b/lib/locomotive/steam/server.rb
+1
-1
| @@ | @@ -32,7 +32,7 @@ module Locomotive::Steam |
| if configuration.serve_assets | |
| use ::Rack::Static, { | |
| root: configuration.asset_path, | |
| - | urls: ['/images', '/fonts', '/samples', '/media', '/sites'] |
| + | urls: ['/images', '/fonts', '/samples', '/sites'] |
| } | |
| use Middlewares::DynamicAssets, { | |
| root: configuration.asset_path, | |