Skip to content

Commit da4c980

Browse files
committed
fix: πŸ› Created logic to show /favicon.ico in search engines
1 parent ed64b3f commit da4c980

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

β€Ž.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# SRC FILES/FOLDERS
66
/src/assets
7+
*.ico
78

89
# PRODUCTION
910
/dist

β€Žfavicon.ico

236 KB
Binary file not shown.

β€Žsrc/pages/404.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<title>THIAGO SAUD DEVELOPER | Take your business to the next level!</title>
55
<meta http-equiv="refresh" content="0; URL=https://thiagosauddev.github.io/" />
6+
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
67
</head>
78

89
<body></body>

β€Žsrc/pages/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<!DOCTYPE html>
22
<html lang="en" data-bs-theme="dark">
33
<head>
4-
<meta http-equiv="cache-control" content="max-age=3600" />
54
<title>THIAGO SAUD DEVELOPER | Take your business to the next level!</title>
5+
<meta http-equiv="cache-control" content="max-age=3600" />
6+
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
67
</head>
78

89
<body>

0 commit comments

Comments
Β (0)