From 44cf981407a86d92cbc11decba7f2be575935b87 Mon Sep 17 00:00:00 2001 From: dsychin Date: Fri, 10 May 2019 23:05:18 +0800 Subject: [PATCH] docs: remove mention of chrome 41 from differential loading (#30390) PR Close #30390 --- aio/content/guide/deployment.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aio/content/guide/deployment.md b/aio/content/guide/deployment.md index fb9175ec1c..caa0c08a0d 100644 --- a/aio/content/guide/deployment.md +++ b/aio/content/guide/deployment.md @@ -437,7 +437,6 @@ The `browserslist` looks like this: > 0.5% last 2 versions Firefox ESR -Chrome 41 # Support for Googlebot not dead not IE 9-11 # For IE 9-11 support, remove 'not'. ``` @@ -470,7 +469,7 @@ The `tsconfig.json` looks like this: } ``` -By default, legacy browsers such as IE 9-11 are ignored, Chrome 41 is included for search engine optimization (SEO) support, and the compilation target is ES2015. As a result, this produces two builds, and differential loading is enabled. If you ignore browsers without ES2015 support, a single build is produced. To see the build result for differential loading based on different configurations, refer to the table below. +By default, legacy browsers such as IE 9-11 are ignored, and the compilation target is ES2015. As a result, this produces two builds, and differential loading is enabled. If you ignore browsers without ES2015 support, a single build is produced. To see the build result for differential loading based on different configurations, refer to the table below.