add favicon

This commit is contained in:
fmtabbara
2021-08-24 10:35:54 +01:00
parent 728da763b3
commit 66210658cb
5 changed files with 1043 additions and 27 deletions
+1
View File
@@ -32,6 +32,7 @@
"@types/react-router-dom": "^5.1.8",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.2.1",
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

+5 -3
View File
@@ -27,9 +27,11 @@ export const theme = createTheme({
borderRadius: 50,
background: '#fff',
},
// notchedOutline: {
// margin: -2,
// },
},
MuiStepIcon: {
text: {
fill: '#fff',
},
},
},
})
+2
View File
@@ -1,4 +1,5 @@
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FaviconsWebpackPlugin = require('favicons-webpack-plugin')
var path = require('path')
module.exports = {
@@ -15,6 +16,7 @@ module.exports = {
template: path.resolve(__dirname, 'public/index.html'),
filename: 'index.html',
}),
new FaviconsWebpackPlugin(path.resolve(__dirname, 'public/favicon.ico')),
],
module: {
rules: [
+1035 -24
View File
File diff suppressed because it is too large Load Diff