Ignore oauth redirects for spa (#2224)

This commit is contained in:
Lance Pioch
2026-02-12 16:31:35 -05:00
committed by GitHub
parent 0bb4503c2b
commit fe55dbd200

View File

@@ -29,6 +29,9 @@ abstract class PanelProvider extends BasePanelProvider
{
return $panel
->spa(fn () => !request()->routeIs('filament.server.pages.console'))
->spaUrlExceptions([
'*/oauth/redirect/*',
])
->databaseNotifications()
->brandName(config('app.name', 'Pelican'))
->brandLogo(config('app.logo'))