When creating a SPA we could capture all routes except some.
Needed this for Laravel
Route::get('/{any?}', function () { return 'Not captured'; })->where('any', '^(?!graphql|dashboard|telescope)[/\w\·-]*');