enzostvs HF staff commited on
Commit
7b00805
β€’
1 Parent(s): dd6b7a6

add metadata auto generated on first load of the model

Browse files
Files changed (1) hide show
  1. .puppeteerrc.cjs +8 -0
.puppeteerrc.cjs ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ const {join} = require('path');
2
+
3
+ /**
4
+ * @type {import("puppeteer").Configuration}
5
+ */
6
+ module.exports = {
7
+ cacheDirectory: join(__dirname, 'node_modules', '.puppeteer_cache'),
8
+ };