Skip to content

Commit

Permalink
fix: add back the favicon and fix type (#126)
Browse files Browse the repository at this point in the history
Signed-off-by: Harikrishnan Balagopal <[email protected]>
  • Loading branch information
HarikrishnanBalagopal authored Jul 31, 2022
1 parent 39114f2 commit 4d34191
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Make sure you are logged into a Kubernetes/Openshift cluster

```shell
$ cd helm-charts
$ helm install m-m2k-instance ./move2kube/
$ helm install my-m2k-instance ./move2kube/
```

For more information and configuration options, see [Move2Kube UI Helm chart](https://github.com/konveyor/move2kube-ui/blob/main/helm-charts/move2kube/README.md)
Expand Down
5 changes: 4 additions & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ module.exports = () => {
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new HtmlWebpackPlugin({ template: path.resolve(__dirname, 'src', 'index.html') }),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src', 'index.html'),
favicon: path.resolve(__dirname, 'src', 'app', 'assets', 'favicon.ico'),
}),
new Dotenv({ systemvars: true, silent: true }),
],
resolve: {
Expand Down

0 comments on commit 4d34191

Please sign in to comment.