ice/.puppeteerrc.cjs
ClarkXia 08ef3b745c
chore: changes the cache location for Puppeteer (#5893)
* chore: changes the cache location for Puppeteer

* fix: ci

* fix: ignore file
2023-02-13 10:50:52 +08:00

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'),
};