puppeteer config

This commit is contained in:
keyan 2022-11-08 13:24:15 -06:00
parent f1a4e9c682
commit e79f39274b
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'),
};