mirror of https://github.com/alibaba/ice.git
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
|
const { join } = require('path');
|
||
|
|
||
|
/**
|
||
|
* @type {import("puppeteer").Configuration}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
// Changes the cache location for Puppeteer.
|
||
|
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
|
||
|
};
|