
@Luiz Gouvea You can go to Site settings->Manage site features, then find "Minimal Download Strategy" and deactivate it.
Or, you can use PowerShell cmdlets to disable the feature:
$web=Get-SPWeb <your site URL>
$web.EnableMinimalDownload=$false
$web.Update()
Please have a try and let's know the result.
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.