diff --git a/package.json b/package.json index 39ef76c..e3a5952 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,8 @@ "expect-jsx": "2.2.1", "extract-text-webpack-plugin": "0.9.1", "file-loader": "^0.8.4", - "html-webpack-plugin": "^1.6.1", + "html-loader": "0.4.0", + "html-webpack-plugin": "^2.6.1", "ip": "1.1.0", "json-loader": "^0.5.2", "mocha": "^2.3.2", diff --git a/webpack/makewebpackconfig.js b/webpack/makewebpackconfig.js index 1837053..eb4cd04 100644 --- a/webpack/makewebpackconfig.js +++ b/webpack/makewebpackconfig.js @@ -147,6 +147,10 @@ module.exports = function(options) { }, { test: /\.jpe?g$|\.gif$|\.png$/i, loader: "url-loader?limit=10000" + }, + { + test: /\.html$/, + loader: 'html-loader' } ] },