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

Commit 09cec1b

Browse files
authored
Merge pull request #23 from topcoder-platform/hotfix/title-and-favicon
Add favicon to base frame
2 parents 71df4b7 + 6233df0 commit 09cec1b

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

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

1.33 KB
Loading

src/index.ejs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>Topcoder Micro Frame</title>
7+
<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)