From a7d69dd5847e433e07bda76bdb3f1b0933797bbe Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 17 Jul 2018 15:06:23 -0400 Subject: [PATCH] docs: mention browserslist may be in separate file [ci skip] --- docs/guide/browser-compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/browser-compatibility.md b/docs/guide/browser-compatibility.md index 0a535a5f1..2d1059f0f 100644 --- a/docs/guide/browser-compatibility.md +++ b/docs/guide/browser-compatibility.md @@ -2,7 +2,7 @@ ## browserslist -You will notice a `browserslist` field in `package.json` specifying a range of browsers the project is targeting. This value will be used by [@babel/preset-env][babel-preset-env] and [autoprefixer][autoprefixer] to automatically determine the JavaScript features that need to be transpiled and the CSS vendor prefixes needed. +You will notice a `browserslist` field in `package.json` (or a separate `.browserslistrc` file) specifying a range of browsers the project is targeting. This value will be used by [@babel/preset-env][babel-preset-env] and [autoprefixer][autoprefixer] to automatically determine the JavaScript features that need to be transpiled and the CSS vendor prefixes needed. See [here][browserslist] for how to specify browser ranges.