Merge pull request #238 from JSteunou/patch-2

Fix regex
This commit is contained in:
Jan Nicklas 2016-02-27 02:00:40 +01:00
commit 05b2abde73
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"
}
]