Simply add the $paginate
property to your CRUD class code.
namespace App\Controller\MyAdmin;
class AppController extends \App\Controller\AppController
{
use \Crud\Controller\ControllerTrait;
public $paginate = ['limit' =--> 999];
public function initialize(): void
{
// ...
}
}