1
0

.lighthouserc.js 429 B

123456789101112131415161718
  1. /**
  2. * lighthouse config
  3. * https://github.com/GoogleChrome/lighthouse-ci/blob/main/docs/configuration.md
  4. */
  5. module.exports = {
  6. ci: {
  7. collect: {
  8. staticDistDir: './storybook-static',
  9. url: ['http://localhost/iframe.html?id=base--semi-a-11-y&args=&viewMode=story'],
  10. isSinglePageApplication: true,
  11. },
  12. upload: {
  13. target: "temporary-public-storage",
  14. },
  15. },
  16. };