Update middleware order to resolve flash.keep issue and unnecessary logging #58

Merged
pmoghaddam merged 1 commits from fix_middleware_order into master 2015-07-03 13:21:33 +00:00
Showing only changes of commit 9a4316ce37 - Show all commits

View File

@ -26,7 +26,7 @@ Then add the middleware to your Rails middleware stack by editing your `config/e
MyApp::Application.configure do MyApp::Application.configure do
# Add Rack::LiveReload to the bottom of the middleware stack with the default options. # Add Rack::LiveReload to the bottom of the middleware stack with the default options.
config.middleware.use Rack::LiveReload config.middleware.insert_after ActionDispatch::Static, Rack::LiveReload
# ... # ...
end end