Spaces:
Runtime error
Runtime error
File size: 269 Bytes
99787f5 |
1 2 3 4 5 6 7 8 9 10 |
const { join } = require('path');
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '..', '.cache'), // Assuming this file is located in the root of your project
};
|