Fix regex

even if it works without, because catching any character, better to be explicit.
This commit is contained in:
Jérôme Steunou 2016-02-26 09:44:04 +01:00
parent 73a5ef7bef
commit a21b79aeb1
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ module: {
{test: /\.png$/, loader: "file-loader"},
{
test: /\.html$/,
exclude: /index.html$/, // you need to exclude your base template (unless you do not want this plugin own templating feature)
exclude: /index\.html$/, // you need to exclude your base template (unless you do not want this plugin own templating feature)
loader: "html"
}
]