Skip to content

Commit 9075dc3

Browse files
committed
Fixed Typo in Readme
1 parent bdaa822 commit 9075dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Also every `<img srcset="..."`> is converted to `require` statements. For exampl
1010
```
1111
is converted to
1212
``` javascript
13-
"<img src=\"" + require("./image.jpg") + "\" srcset=\"" + require("./image.jpg") + " 1x," + require("./image@2x.jpg") " 2x \">"
13+
"<img src=\"" + require("./image.jpg") + "\" srcset=\"" + require("./image.jpg") + " 1x," + require("./image@2x.jpg") + " 2x \">"
1414
```
1515
You can specify which tag-attribute combination should be processed by this loader via the query parameter `attrs`. Pass an array or a space-separated list of `<tag>:<attribute>` combinations. (Default: `attrs=[img:src, img:srcset]`)
1616

0 commit comments

Comments
 (0)