21 lines
309 B
JavaScript
21 lines
309 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2025 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @type {import("puppeteer").Configuration}
|
|
*/
|
|
module.exports = {
|
|
chrome: {
|
|
skipDownload: false,
|
|
},
|
|
['chrome-headless-shell']: {
|
|
skipDownload: true,
|
|
},
|
|
firefox: {
|
|
skipDownload: true,
|
|
},
|
|
};
|