Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 6233df0

Browse files
dmessingmtwomey
authored andcommitted
added favicon as default
1 parent 43eb2a0 commit 6233df0

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

src/images/cropped-TC-Icon-32x32.png

1.33 KB
Loading

src/index.ejs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<title>Topcoder.com</title>
88

9+
<link rel="icon" href="/cropped-TC-Icon-32x32.png" />
910
<link rel="stylesheet" href="/global.css">
1011

1112
<!--

webpack.config.js

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ module.exports = (webpackConfigEnv) => {
1818
historyApiFallback: true,
1919
hot: true,
2020
inline: true,
21-
host: 'local.topcoder-dev.com',
21+
host: "local.topcoder-dev.com",
2222
port: 8080,
2323
proxy: {
24-
'*': {
25-
target: 'http://local.topcoder-dev.com:3000/',
26-
secure: false
27-
}
28-
}
24+
"*": {
25+
target: "http://local.topcoder-dev.com:3000/",
26+
secure: false,
27+
},
28+
},
2929
},
3030
plugins: [
3131
new HtmlWebpackPlugin({
@@ -39,7 +39,14 @@ module.exports = (webpackConfigEnv) => {
3939
}),
4040
new CopyWebpackPlugin({
4141
patterns: [
42-
{ from: "src/reuse", to: "./" }
42+
{
43+
from: "src/reuse",
44+
to: "./",
45+
},
46+
{
47+
from: "src/images",
48+
to: "./",
49+
},
4350
],
4451
}),
4552
],

0 commit comments

Comments
 (0)