Rahul Ravikumar | e8c45eb | 2023-11-13 16:44:53 -0800 | [diff] [blame] | 1 | const {join} = require('path'); |
2 | |||||
3 | /** | ||||
4 | * @type {import("puppeteer").Configuration} | ||||
5 | */ | ||||
6 | module.exports = { | ||||
7 | // Changes the cache location for Puppeteer. | ||||
8 | cacheDirectory: join(__dirname, '.cache', 'puppeteer'), | ||||
9 | }; |