Skip to content
Snippets Groups Projects
Commit 59012324 authored by Fred Chasen's avatar Fred Chasen
Browse files

Remove no-sandbox arg

parent 061e7b6a
No related branches found
No related tags found
Pipeline #30137 failed with stages
in 2 seconds
...@@ -39,7 +39,7 @@ class Printer extends EventEmitter { ...@@ -39,7 +39,7 @@ class Printer extends EventEmitter {
async setup() { async setup() {
const browser = await puppeteer.launch({ const browser = await puppeteer.launch({
headless: this.headless, headless: this.headless,
args: this.allowLocal ? ['--allow-file-access-from-files', '--disable-dev-shm-usage', '--no-sandbox'] : ['--disable-dev-shm-usage', '--no-sandbox'], args: this.allowLocal ? ['--allow-file-access-from-files', '--disable-dev-shm-usage'] : ['--disable-dev-shm-usage'],
ignoreHTTPSErrors: true ignoreHTTPSErrors: true
}); });
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment