mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-30 16:55:08 +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'),
|
|
};
|