Skip to content

Commit 6038b26

Browse files
committed
bump puppeteer to 23.8.0
1 parent 92eb7e5 commit 6038b26

File tree

3 files changed

+724
-140
lines changed

3 files changed

+724
-140
lines changed

.puppeteerrc.cjs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const path = require('path');
2+
const countlyDir = __dirname;
3+
const puppeteerInstallPath= path.join(countlyDir, '.cache', 'puppeteer')
4+
/**
5+
* @type {import("puppeteer").Configuration}
6+
*/
7+
module.exports = {
8+
// Download Chrome (default `skipDownload: false`)
9+
chrome: {
10+
skipDownload: false,
11+
},
12+
cacheDirectory: puppeteerInstallPath,
13+
};

0 commit comments

Comments
 (0)