Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config/debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
| Specify a callback if you want to limit based on IP or authentication.
| Leaving it to null will allow localhost only.
*/

'storage' => [
'enabled' => true,
'open' => env('DEBUGBAR_OPEN_STORAGE'), // bool/callback.
Expand Down Expand Up @@ -139,6 +140,7 @@
| in the Messages tab.
|
*/

'error_handler' => false,

/*
Expand All @@ -150,6 +152,7 @@
| Extension, without the server-side code. It uses Debugbar collectors instead.
|
*/

'clockwork' => false,

/*
Expand Down Expand Up @@ -290,6 +293,7 @@
| from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97
|
*/

'route_prefix' => '_debugbar',

/*
Expand All @@ -299,6 +303,7 @@
|
| Additional middleware to run on the Debugbar routes
*/

'route_middleware' => [],

/*
Expand All @@ -309,6 +314,7 @@
| By default Debugbar route served from the same domain that request served.
| To override default domain, specify it as a non-empty value.
*/

'route_domain' => null,

/*
Expand All @@ -319,6 +325,7 @@
| Switches between light and dark theme. If set to auto it will respect system preferences
| Possible values: auto, light, dark
*/

'theme' => env('DEBUGBAR_THEME', 'auto'),

/*
Expand All @@ -329,5 +336,6 @@
| By default, the Debugbar limits the number of frames returned by the 'debug_backtrace()' function.
| If you need larger stacktraces, you can increase this number. Setting it to 0 will result in no limit.
*/

'debug_backtrace_limit' => 50,
];