6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
|
const {join} = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
|
||
|
};
|