feat: add logo (#71)

This commit is contained in:
Dream Hunter
2024-03-04 23:52:01 +08:00
committed by GitHub
parent ce76b00fbd
commit 364447f660
4 changed files with 5 additions and 6 deletions
+3 -3
View File
@@ -3,11 +3,11 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/logo.svg"> <link rel="icon" href="/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temp Email</title> <title>Temp Email</title>
<link rel="icon" href="/logo.svg" sizes="any"> <link rel="icon" href="/logo.png" sizes="any">
<link rel="apple-touch-icon" href="/logo.svg"> <link rel="apple-touch-icon" href="/logo.png">
</head> </head>
<body> <body>
Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 50 KiB

+2 -2
View File
@@ -22,9 +22,9 @@ export default defineConfig({
description: 'Temp Email - Temporary Email', description: 'Temp Email - Temporary Email',
icons: [ icons: [
{ {
src: '/logo.svg', src: '/logo.png',
sizes: '192x192', sizes: '192x192',
type: 'image/svg+xml' type: 'image/png'
} }
] ]
} }