From a21b79aeb179bd88ccf42d1b0e52a049cb6a21b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Steunou?= Date: Fri, 26 Feb 2016 09:44:04 +0100 Subject: [PATCH] Fix regex even if it works without, because catching any character, better to be explicit. --- migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration.md b/migration.md index 22b4433..e4695d3 100644 --- a/migration.md +++ b/migration.md @@ -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" } ]