topnotch_website/.puppeteer.cjs
2024-10-23 15:45:10 -04:00

9 lines
216 B
JavaScript

const {join} = require('path');
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
};