Skip to content

Commit

Permalink
fix: omit --disable-gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
uetchy committed Jan 8, 2020
1 parent d4cead7 commit 0fd7b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/build.ts
Expand Up @@ -65,7 +65,7 @@ export default async function run({
log(`Launching build environment... `);
const browser = await puppeteer.launch({
headless: true,
args: ['--disable-gpu', sandbox ? '' : '--no-sandbox'],
args: [sandbox ? '' : '--no-sandbox'],
});
const version = await browser.version();
debug(chalk.green(`success [version=${version}]`));
Expand Down

0 comments on commit 0fd7b6a

Please sign in to comment.