Skip to content

Commit 7027841

Browse files
committed
Fikser cache dir (???)
1 parent 8494677 commit 7027841

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

puppeteer.config.cjs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const { join } = require('path');
2+
3+
/**
4+
* @type {import("puppeteer").Configuration}
5+
*/
6+
module.exports = {
7+
// Changes the cache location for Puppeteer.
8+
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
9+
};

0 commit comments

Comments
 (0)