1const {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};
10