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

Earn Restructure PR #26

Merged
merged 16 commits into from
Sep 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added favicon as default
  • Loading branch information
dmessing committed Aug 11, 2021
commit aca8400edcb3b01d8c077419024bf9c3ca1f749b
Binary file added src/images/cropped-TC-Icon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Topcoder.com</title>

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

<!--
Expand Down
21 changes: 14 additions & 7 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ module.exports = (webpackConfigEnv) => {
historyApiFallback: true,
hot: true,
inline: true,
host: 'local.topcoder-dev.com',
host: "local.topcoder-dev.com",
port: 8080,
proxy: {
'*': {
target: 'http://local.topcoder-dev.com:3000/',
secure: false
}
}
"*": {
target: "http://local.topcoder-dev.com:3000/",
secure: false,
},
},
},
plugins: [
new HtmlWebpackPlugin({
Expand All @@ -39,7 +39,14 @@ module.exports = (webpackConfigEnv) => {
}),
new CopyWebpackPlugin({
patterns: [
{ from: "src/reuse", to: "./" }
{
from: "src/reuse",
to: "./",
},
{
from: "src/images",
to: "./",
},
],
}),
],
Expand Down