Fixing page visibility in Experience Editor

It happend to me that one specific page was not been shown in Experience Editor. It end up being it was too long. Fixed it by adding this change in api/editing/render.ts.

export const config = {
  api: {
    bodyParser: {
      sizeLimit: '4mb',
    },
    responseLimit: false,
  },
};