diff --git a/docs/_inc/_install-browser-reqs-classic-ui.md b/docs/_inc/_install-browser-reqs-classic-ui.md new file mode 100644 index 000000000..786424a3c --- /dev/null +++ b/docs/_inc/_install-browser-reqs-classic-ui.md @@ -0,0 +1,16 @@ +You can view the list of supported browsers for Classic UI at [Browserslist](https://browsersl.ist/#q=%3E%3D+0.5%25%0Alast+2+major+versions%0Anot+dead%0AChrome+%3E%3D+60%0AFirefox+%3E%3D+60%0AFirefox+ESR%0AiOS+%3E%3D+12%0ASafari+%3E%3D+12%0Anot+Explorer+%3C%3D+11). + +The supported web browsers for Classic UI are set according to [Bootstrap](https://getbootstrap.com/docs/5.2/getting-started/browsers-devices/#supported-browsers). +The following code snippet is the [browserslist configuration for Bootstrap 5.2.3](https://github.com/twbs/bootstrap/blob/v5.2.3/.browserslistrc). + +```shell +>= 0.5% +last 2 major versions +not dead +Chrome >= 60 +Firefox >= 60 +Firefox ESR +iOS >= 12 +Safari >= 12 +not Explorer <= 11 +``` diff --git a/docs/_inc/_install-browser-reqs-volto.md b/docs/_inc/_install-browser-reqs-volto.md new file mode 100644 index 000000000..b5db8d42a --- /dev/null +++ b/docs/_inc/_install-browser-reqs-volto.md @@ -0,0 +1,10 @@ +You can view the list of supported browsers for Volto at [Browserslist](https://browsersl.ist/#q=%3E1%25%0Alast+4+versions%0AFirefox+ESR%0Anot+dead). + +These browsers are set according to the `browserslist` key in Volto's [`package.json`](https://github.com/plone/volto/blob/1aff8d0451f5cb375ca9f5afe9b2b72a0555afd8/packages/volto/package.json#L170-L176) file, whose content is below. + +```shell +>1% +last 4 versions +Firefox ESR +not dead +```