This repository was archived by the owner on May 11, 2026. It is now read-only.
v3.9.0
This release is focused around making payloads sent to happo.io smaller. The first change is that all requests are now gzipped. The second change allows RemoteBrowserTarget to take a chunks option.
// .happo.js
module.exports = {
targets: {
chrome: new RemoteBrowserTarget('chrome', {
viewport: '800x600',
chunks: 2,
});
}
}If you're running into Payload too large issues, using the chunks option can help make payloads small enough.