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
there is the need to configure webpack dev-server to use https in order to work with service worker. webpack dev-server can be configured to serve self-signed certificate. as a result, chromium needs to launched with --ignore-certificate-errors and --unsafely-treat-insecure-origin-as-secure=https://localhost:8080 arguments, but there is no straightforward way to provide chromium arguments to lighthouse-plugin.
is there any way to provide the arguments for chrome-launcher?
is there any way to control the plugin execution only when the webpack dev-server kicks in and not for webpack in general (for instance, not to run when only bundeling takes place)?
The text was updated successfully, but these errors were encountered:
there is the need to configure webpack dev-server to use https in order to work with service worker. webpack dev-server can be configured to serve self-signed certificate. as a result, chromium needs to launched with
--ignore-certificate-errors
and--unsafely-treat-insecure-origin-as-secure=https://localhost:8080
arguments, but there is no straightforward way to provide chromium arguments to lighthouse-plugin.chrome-launcher options supports
chromeFlags
which is utilised by lighthouse.The text was updated successfully, but these errors were encountered: