We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add the following to config.rb:
config.rb
require "better_errors" require "binding_of_caller" set :show_exceptions, false configure :development do use BetterErrors::Middleware BetterErrors.application_root = __dir__ end
There is currently a bug that keeps context information from loading using Middleman.
Add the following to the top of your Sinatra application:
require "better_errors" configure :development do use BetterErrors::Middleware BetterErrors.application_root = __dir__ end