blob: 5f1a18276db4ee008462f91411859a150532b0d9 [file] [log] [blame]
Rahul Ravikumare8c45eb2023-11-13 16:44:53 -08001const {join} = require('path');
2
3/**
4 * @type {import("puppeteer").Configuration}
5 */
6module.exports = {
7 // Changes the cache location for Puppeteer.
8 cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
9};