stacker.news/.puppeteerrc.cjs

9 lines
212 B
JavaScript
Raw Normal View History

2022-11-08 19:24:15 +00:00
const {join} = require('path');
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
};