Merge pull request #139 from tibor/patch-1

as="" attribute is needed for using preload
This commit is contained in:
Josh Buchea 2016-07-21 22:45:56 -07:00 committed by GitHub
commit 25763319f0
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ Below are the meta attributes which are not recommended for use as they had low
<link rel="prefetch" href="https://www.example.com/">
<link rel="prerender" href="https://example.com/">
<link rel="subresource" href="styles.css">
<link rel="preload" href="image.png">
<link rel="preload" href="image.png" as="image">
<!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ -->
```