puppeteer config

This commit is contained in:
keyan 2022-11-08 13:24:15 -06:00
parent 8de00c741d
commit 249bcce04c
1 changed files with 9 additions and 0 deletions

9
.puppeteerrc.cjs Normal file
View File

@ -0,0 +1,9 @@
const {join} = require('path');
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
};