What is this exception and why does it happen on 404 pages exclusively from javascript calling pages?
My guess is that it's trying to get debug information from the call, but can't due to storage not being activated
Steps to reproduce
fetch('any/route/not/defined', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
});
^ run this from any console and see an exception pop in the laravel.log
