You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We struggled to find that a method named "fortify" was added by default to NovaServiceProvider, which is overriding config('fortify') causing it to be null in HandleInertiaRequests.php.
This shall be indicated in documentation, as it's not an indented behaviour from natural upgrade.
Detailed steps to reproduce the issue on a fresh Nova installation:
Remove fortify() method from NovaServiceProvider.php
The text was updated successfully, but these errors were encountered:
Unable to reproduce the issue, please provide full reproducing repository based on fresh installation as suggested in the bug report template (or you can refer to https://github.com/nova-issues for example)
Launch without octane via "composer dev" and uncomment line 41 of app/Http/Middleware/HandleInertiaRequests.php. It works.
Launch with octane via "composer octane:dev", it will display null.
If you add fortify() method in app/Providers/NovaServiceProvider.php with subsequent configurations (inherited from config('fortify') for example) it works again.
Description:
Hi guys,
We struggled to find that a method named "fortify" was added by default to NovaServiceProvider, which is overriding config('fortify') causing it to be null in HandleInertiaRequests.php.
This shall be indicated in documentation, as it's not an indented behaviour from natural upgrade.
Detailed steps to reproduce the issue on a fresh Nova installation:
Remove fortify() method from NovaServiceProvider.php
The text was updated successfully, but these errors were encountered: