File tree 1 file changed +8
-1
lines changed
packages/schematics/angular/application/files/src
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 28
28
// import 'core-js/es6/math';
29
29
// import 'core-js/es6/string';
30
30
// import 'core-js/es6/date';
31
- import 'core-js/es6/array' ;
32
31
// import 'core-js/es6/regexp';
33
32
// import 'core-js/es6/map';
34
33
// import 'core-js/es6/weak-map';
35
34
// import 'core-js/es6/set';
36
35
36
+ /**
37
+ * If your app need to indexed by Google Search, your app require polyfills 'core-js/es6/array'
38
+ * Google bot use ES5.
39
+ * FYI: Googlebot uses a renderer following the similar spec to Chrome 41.
40
+ * https://developers.google.com/search/docs/guides/rendering
41
+ **/
42
+ import 'core-js/es6/array' ;
43
+
37
44
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
38
45
// import 'classlist.js'; // Run `npm install --save classlist.js`.
39
46
You can’t perform that action at this time.
0 commit comments