mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 15:47:48 +08:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
const { join } = require('path');
|
|
|
|
/**
|
|
* @type {import("puppeteer").Configuration}
|
|
*/
|
|
module.exports = {
|
|
// Changes the cache location for Puppeteer.
|
|
cacheDirectory: join(__dirname, 'node_modules', '.cache', 'puppeteer'),
|
|
};
|