from piccolo_admin.endpoints import create_admin
admin_app = create_admin(
tables=[SomeTable],
page_size=50,
)

The function create_admin takes a page_size parameter, which is later provided to piccolo CRUD, but it's not getting to the frontend vue part and the admin page still uses the default 15 pages which is hardcoded elsewhere, I think.