From 7634c1cb319146d5a18186656c815a2aba87c250 Mon Sep 17 00:00:00 2001 From: Alan Date: Thu, 18 Oct 2018 08:25:06 +0200 Subject: [PATCH] docs: fix links to browserlist (#26531) PR Close #26531 --- aio/content/guide/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/build.md b/aio/content/guide/build.md index bfa401254c..7fad196614 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -268,7 +268,7 @@ Each budget entry is a JSON object with the following properties: The CLI uses [Autoprefixer](https://github.com/postcss/autoprefixer) to ensure compatibility with different browser and browser versions. You may find it necessary to target specific browsers or exclude certain browser versions from your build. -Internally, Autoprefixer relies on a library called [Browserslist(https://github.com/ai/browserslist)] to figure out which browsers to support with prefixing. +Internally, Autoprefixer relies on a library called [Browserslist](https://github.com/browserslist/browserslist) to figure out which browsers to support with prefixing. Browserlist looks for configuration options in a `browserlist` property of the package configuration file, or in a configuration file named `.browserslistrc`. Autoprefixer looks for the Browserlist configuration when it prefixes your CSS. @@ -287,7 +287,7 @@ Autoprefixer looks for the Browserlist configuration when it prefixes your CSS. last 2 versions ``` -See the [browserslist repo](https://github.com/ai/browserslist) for more examples of how to target specific browsers and versions. +See the [browserslist repo](https://github.com/browserslist/browserslist) for more examples of how to target specific browsers and versions.
Backward compatibility