Skip to content

Commit

Permalink
dynamic-import-chunkname: Fixed invalid chunk name pattern in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pwfcurry authored and ljharb committed Aug 7, 2019
1 parent 35a12f9 commit 92b7533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/dynamic-import-chunkname.md
Expand Up @@ -11,7 +11,7 @@ You can also configure the regex format you'd like to accept for the webpackChun
{
"dynamic-import-chunkname": [2, {
importFunctions: ["dynamicImport"],
webpackChunknameFormat: "[a-zA-Z0-57-9-/_]"
webpackChunknameFormat: "[a-zA-Z0-57-9-/_]+"
}]
}
```
Expand Down

0 comments on commit 92b7533

Please sign in to comment.