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
BrowserOptions
Config
To handle different device sizes we have different places to configure them:
Lighthouse Config
const lighthouseConfig: Config = { extends: 'lighthouse:default', settings: { formFactor: 'desktop', screenEmulation: { mobile: false, width: 1350, height: 940, deviceScaleFactor: 1, disabled: false } } }
This setting applies to the browsers window not the viewport.
Puppeteer BrowserOptions
// const browserOptions: BrowserOptions = { defaultViewport: { isMobile: false, isLandscape: false, width: 1350, height: 940, } }
This setting applies to the Browsers viewport, not window.
This issue is slightly connected with #142
The text was updated successfully, but these errors were encountered:
LaunchOptions
No branches or pull requests
To handle different device sizes we have different places to configure them:
Lighthouse
Config
This setting applies to the browsers window not the viewport.
Puppeteer
BrowserOptions
This setting applies to the Browsers viewport, not window.
This issue is slightly connected with #142
The text was updated successfully, but these errors were encountered: