tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

puppeteer.config.cjs (288B)


      1 /**
      2 * @license
      3 * Copyright 2024 Google Inc.
      4 * SPDX-License-Identifier: Apache-2.0
      5 */
      6 
      7 /**
      8 * @type {import("puppeteer").Configuration}
      9 */
     10 module.exports = {
     11  chrome: {
     12    skipDownload: false,
     13    skipHeadlessShellDownload: false,
     14  },
     15  firefox: {
     16    skipDownload: false,
     17  },
     18 };