Skip to content

Commit

Permalink
Use artifacts directory for puppeteer cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Nov 5, 2024
1 parent 4886f46 commit 63e0b5e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .puppeteerrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const { join } = require("path");

/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, "artifacts/puppeteer/cache"),
};

0 comments on commit 63e0b5e

Please sign in to comment.