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

View File

@@ -3,11 +3,11 @@
<head>
<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">
<title>Temp Email</title>
<link rel="icon" href="/logo.svg" sizes="any">
<link rel="apple-touch-icon" href="/logo.svg">
<link rel="icon" href="/logo.png" sizes="any">
<link rel="apple-touch-icon" href="/logo.png">
</head>
<body>

BIN
frontend/public/logo.png Normal file

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

View File

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