Fix PictureInPicture

This commit is contained in:
thororen1234 2024-08-09 23:42:47 -04:00
parent 11a32888f3
commit 2849c36cdf
3 changed files with 35 additions and 28 deletions

View file

@ -37,7 +37,10 @@ const CANARY = process.env.USE_CANARY === "true";
const browser = await pup.launch({
headless: true,
executablePath: process.env.CHROMIUM_BIN
executablePath: process.env.CHROMIUM_BIN,
args: [
'--shm-size=5gb' // Testing Value
]
});
const page = await browser.newPage();