You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the ability to have the chromium brotli file stored somewhere besides the package. This would enable us to get around 50mb limits that seem to plague vercel and other services that limit the deployable size.
test("Check the page title of example.com", async (t) => {
const browser = await puppeteer.launch({
args: chromium.args,
defaultViewport: chromium.defaultViewport,
executablePath: await chromium.executablePath("https://bucket.s3.amazonaws.com/chromium108.br"),
headless: chromium.headless,
ignoreHTTPSErrors: true,
});
});
test("Check the page title of example.com", async (t) => {
const browser = await puppeteer.launch({
args: chromium.args,
defaultViewport: chromium.defaultViewport,
executablePath: await chromium.executablePath("/opt/chromium.br"),
headless: chromium.headless,
ignoreHTTPSErrors: true,
});
});
Sparticuz
changed the title
[REQUEST] Remote location for the chromium brotli file
[REQUEST] Alternate/Remote location for the chromium brotli file
Dec 9, 2022
Sparticuz
changed the title
[REQUEST] Alternate/Remote location for the chromium brotli file
[REQUEST] Remote location for the chromium brotli file
Dec 28, 2022
v109.0.6 has been published with now lets you use a remote location for the brotli files (now a .tar pack). Super thanks to @aqaurius6666 for the code!!
Implement the ability to have the chromium brotli file stored somewhere besides the package. This would enable us to get around 50mb limits that seem to plague vercel and other services that limit the deployable size.
Closes #24
Closes #8
The text was updated successfully, but these errors were encountered: