Skip to content

Commit 1a09b8f

Browse files
Bump html-loader from 1.3.2 to 2.1.2 (#43)
* Bump html-loader from 1.3.2 to 2.1.2 Bumps [html-loader](https://github.com/webpack-contrib/html-loader) from 1.3.2 to 2.1.2. - [Release notes](https://github.com/webpack-contrib/html-loader/releases) - [Changelog](https://github.com/webpack-contrib/html-loader/blob/master/CHANGELOG.md) - [Commits](webpack/html-loader@v1.3.2...v2.1.2) Signed-off-by: dependabot[bot] <support@github.com> * Bump html-loader from 1.3.2 to 2.1.2 Bumps [html-loader](https://github.com/webpack-contrib/html-loader) from 1.3.2 to 2.1.2. - [Release notes](https://github.com/webpack-contrib/html-loader/releases) - [Changelog](https://github.com/webpack-contrib/html-loader/blob/master/CHANGELOG.md) - [Commits](webpack/html-loader@v1.3.2...v2.1.2) Signed-off-by: dependabot[bot] <support@github.com> * Move the favicon, which the loader chokes on * Go away... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: qntm <qntm@users.noreply.github.com>
1 parent 9a70f3b commit 1a09b8f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"eslint-plugin-react": "^7.21.5",
5151
"eslint-plugin-standard": "^5.0.0",
5252
"express": "^4.17.1",
53-
"html-loader": "^1.3.1",
53+
"html-loader": "^2.1.2",
5454
"html-webpack-plugin": "^5.3.1",
5555
"jest": "^26.4.2",
5656
"mini-css-extract-plugin": "^1.0.0",

src/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta charset="UTF-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1"/>
66
<title>HATETRIS @ Things Of Interest</title>
7-
<link rel="shortcut icon" href="favicon.png"/>
87
</head>
98
<body>
109
<div class="index__root"></div>

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
}),
1111
new HtmlWebpackPlugin({
1212
template: 'src/index.html',
13+
favicon: './src/favicon.png',
1314
filename: 'hatetris.html',
1415
xhtml: true
1516
})

0 commit comments

Comments
 (0)