spooky-bot / .puppeteerrc.cjs
Mahfujul's picture
Create .puppeteerrc.cjs
99787f5 verified
raw
history blame contribute delete
269 Bytes
const { join } = require('path');
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '..', '.cache'), // Assuming this file is located in the root of your project
};