Fix regex
even if it works without, because catching any character, better to be explicit.
This commit is contained in:
parent
73a5ef7bef
commit
a21b79aeb1
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue