Skip to content

Commit 76c5ae7

Browse files
Replaced favicons and favicons-webpack-plugin packages with static icons.
1 parent 270b5b1 commit 76c5ae7

File tree

15 files changed

+72
-1374
lines changed

15 files changed

+72
-1374
lines changed

favicon.png

-5.77 KB
Binary file not shown.

favicon.svg

Lines changed: 0 additions & 22 deletions
This file was deleted.

icon-16x16.png

507 Bytes
Loading

icon-240x240.svg

Lines changed: 1 addition & 0 deletions
Loading

icon-32x32.png

931 Bytes
Loading

icon-48x48.png

1.33 KB
Loading

icon-config.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"shape": "squircle",
3+
"shapeProps": {
4+
"n": 5,
5+
"resolution": 20,
6+
"width": 240,
7+
"height": 240,
8+
"fill": "#d461b0"
9+
},
10+
"fontFamily": "Oxygen",
11+
"fontSize": 160,
12+
"fontVariant": "regular",
13+
"text": "LV",
14+
"fontColor": "#ffffff"
15+
}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@
2626
"babel-preset-react-app": "^10.0.1",
2727
"browserslist": "^4.21.1",
2828
"clean-webpack-plugin": "^4.0.0",
29+
"copy-webpack-plugin": "^11.0.0",
2930
"core-js": "^3.23.3",
3031
"css-loader": "^6.7.1",
3132
"css-minimizer-webpack-plugin": "^4.0.0",
32-
"favicons": "^6.2.2",
33-
"favicons-webpack-plugin": "^5.0.2",
3433
"html-webpack-plugin": "^5.5.0",
3534
"jest": "^28.1.2",
3635
"jest-css-modules-transform": "^4.4.2",

packages/app/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<title>LCOV Viewer</title>
8+
<link rel="icon" type="image/png" sizes="16x16" href="icon-16x16.png">
9+
<link rel="icon" type="image/png" sizes="32x32" href="icon-32x32.png">
10+
<link rel="icon" type="image/png" sizes="48x48" href="icon-48x48.png">
811
</head>
912
<body>
1013
<div id="root"></div>

packages/app/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"devDependencies": {
1414
"@lcov-viewer/istanbul-report": "^1.2.1",
1515
"@testing-library/jest-dom": "^5.16.4",
16-
"@testing-library/preact": "^3.2.2",
17-
"copy-webpack-plugin": "^11.0.0"
16+
"@testing-library/preact": "^3.2.2"
1817
},
1918
"dependencies": {
2019
"@lcov-viewer/components": "^1.2.1",

0 commit comments

Comments
 (0)