aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2018-03-31 14:05:22 -0700
committerMark Otto <[email protected]>2018-03-31 22:06:41 -0700
commita016cbd6a88dd092179bec327eab2bca84268f5f (patch)
tree9beccb50f12dc16631214540ac2d124c1124e39d /docs
parent74490346ffe4281ffa37e886adbae597104e7e0b (diff)
downloadbootstrap-a016cbd6a88dd092179bec327eab2bca84268f5f.tar.xz
bootstrap-a016cbd6a88dd092179bec327eab2bca84268f5f.zip
Mention browserslist config in our docs to close #25429
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/browsers-devices.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/4.0/getting-started/browsers-devices.md b/docs/4.0/getting-started/browsers-devices.md
index 63ee7c30e..948a09c45 100644
--- a/docs/4.0/getting-started/browsers-devices.md
+++ b/docs/4.0/getting-started/browsers-devices.md
@@ -12,6 +12,25 @@ Bootstrap supports the **latest, stable releases** of all major browsers and pla
Alternative browsers which use the latest version of WebKit, Blink, or Gecko, whether directly or via the platform's web view API, are not explicitly supported. However, Bootstrap should (in most cases) display and function correctly in these browsers as well. More specific support information is provided below.
+You can find our supported range of browsers and their versions [in our `package.json`]({{ site.repo }}/blob/v4-dev/package.json):
+
+```json
+"browserslist": [
+ "last 1 major version",
+ ">= 1%",
+ "Chrome >= 45",
+ "Firefox >= 38",
+ "Edge >= 12",
+ "Explorer >= 10",
+ "iOS >= 9",
+ "Safari >= 9",
+ "Android >= 4.4",
+ "Opera >= 30"
+]
+```
+
+We use [Browserslist](https://github.com/browserslist/browserslist) to manage these versions alongside Autoprefixer to compile our CSS with the intended browser support. Consult their documentation for how to integrate this into your projects.
+
### Mobile devices
Generally speaking, Bootstrap supports the latest versions of each major platform's default browsers. Note that proxy browsers (such as Opera Mini, Opera Mobile's Turbo mode, UC Browser Mini, Amazon Silk) are not supported.