Back to Browsershot

Performance

docs/miscellaneous-options/performance.md

5.3.0453 B
Original Source

The default behavior of the browsershot is to capture requested addresses. So when you use data urls on the HTML document , this capturing is not good for memory because more addresses consume more memory.

You can disable this option by calling disableCaptureURLs().

php
Browsershot
    ::html('More data urls exists in this document')
    ->disableCaptureURLs()
;