We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[tips] Workaround when gulp gets stuck
gulp demo
diff --git a/demo-backend/cacheBundleGeneration.js b/demo-backend/cacheBundleGeneration.js index 6a829b2b..8c33ebfd 100644 --- a/demo-backend/cacheBundleGeneration.js +++ b/demo-backend/cacheBundleGeneration.js @@ -61,8 +61,8 @@ const loadOnly = process.argv[2] === 'loadOnly'; console.log('serverSecret', serverSecret); await new Promise(resolve => setTimeout(resolve, 4000)); console.log('wait 4000'); - let browser = await puppeteer.launch({ headless: true, dumpio: false, args: ['--disable-gpu', '--no-sandbox', '--no-setsuid-sandbox'], executablePath: chromePath }); // terse and fastest - //let browser = await puppeteer.launch({ headless: false, dumpio: true, args: [ '--disable-gpu', '--enable-logging=stderr' ], executablePath: chromePath }); + //let browser = await puppeteer.launch({ headless: true, dumpio: false, args: ['--disable-gpu', '--no-sandbox', '--no-setsuid-sandbox'], executablePath: chromePath }); // terse and fastest + let browser = await puppeteer.launch({ headless: false, dumpio: true, args: [ '--disable-gpu', '--enable-logging=stderr' ], executablePath: chromePath }); //let browser = await puppeteer.launch({ headless: false, dumpio: true, args: [ '--disable-gpu', '--enable-logging=stderr', '--auto-open-devtools-for-tabs' ], executablePath: chromePath }); let page = await browser.newPage(); await page.setViewport({ width: 1200, height: 800 });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[tips] Workaround when gulp gets stuck
Root Cause
gulp demo
processWorkaround
The text was updated successfully, but these errors were encountered: