diff --git a/eslint.config.mjs b/eslint.config.mjs index 2dcb3cecb..3a17c16d0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -29,6 +29,7 @@ export default defineConfig([ projectService: { allowDefaultProject: [ '.prettierrc.cjs', + 'puppeteer.config.cjs', 'eslint.config.mjs', 'rollup.config.mjs', ], diff --git a/puppeteer.config.cjs b/puppeteer.config.cjs new file mode 100644 index 000000000..d162fc0fd --- /dev/null +++ b/puppeteer.config.cjs @@ -0,0 +1,20 @@ +/** + * @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, + }, +};