diff --git a/src/services/common/AnchoringProofService/AnchoringProofService.ts b/src/services/common/AnchoringProofService/AnchoringProofService.ts index b1af4a2d..6f13103f 100644 --- a/src/services/common/AnchoringProofService/AnchoringProofService.ts +++ b/src/services/common/AnchoringProofService/AnchoringProofService.ts @@ -72,8 +72,8 @@ export default class AnchoringProofService extends BaseService { */ public async generate(data: AnchoringProofData): Promise { const browser = await puppeteer.launch({ - headless: "new", - args: ["--no-sandbox", "--disable-setuid-sandbox"], + headless: true, + args: ["--no-sandbox", "--disable-gpu"], }); const page = await browser.newPage();