We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376f57c commit 04deff2Copy full SHA for 04deff2
eslint.config.mjs
@@ -29,6 +29,7 @@ export default defineConfig([
29
projectService: {
30
allowDefaultProject: [
31
'.prettierrc.cjs',
32
+ 'puppeteer.config.cjs',
33
'eslint.config.mjs',
34
'rollup.config.mjs',
35
],
puppeteer.config.cjs
@@ -0,0 +1,20 @@
1
+/**
2
+ * @license
3
+ * Copyright 2025 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
+ },
14
+ ['chrome-headless-shell']: {
15
+ skipDownload: true,
16
17
+ firefox: {
18
19
20
+};
0 commit comments