chromedevtools--chrome-devtools-mcp
04deff21a4
Effectively this means we won't download chrome-headless-shell by default
21 行
309 B
JavaScript
21 行
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,
|
|
},
|
|
};
|