feat: add favicon icons in PNG, ICO, and SVG formats
This commit is contained in:
@@ -27,6 +27,10 @@ export const Route = createRootRoute({
|
||||
},
|
||||
{
|
||||
title: 'Juggernaut Plays Blog'
|
||||
},
|
||||
{
|
||||
name: 'description',
|
||||
content: 'Juego con cosas y luego hablo de ello.'
|
||||
}
|
||||
],
|
||||
links: [
|
||||
@@ -45,6 +49,33 @@ export const Route = createRootRoute({
|
||||
{
|
||||
rel: 'stylesheet',
|
||||
href: FONTAWESOME_STYLES
|
||||
},
|
||||
{
|
||||
rel: 'icon',
|
||||
type: 'image/svg+xml',
|
||||
href: '/favicon.svg'
|
||||
},
|
||||
{
|
||||
rel: 'icon',
|
||||
type: 'image/x-icon',
|
||||
href: '/favicon.ico'
|
||||
},
|
||||
{
|
||||
rel: 'icon',
|
||||
type: 'image/png',
|
||||
sizes: '16x16',
|
||||
href: '/favicon-16x16.png'
|
||||
},
|
||||
{
|
||||
rel: 'icon',
|
||||
type: 'image/png',
|
||||
sizes: '32x32',
|
||||
href: '/favicon-32x32.png'
|
||||
},
|
||||
{
|
||||
rel: 'apple-touch-icon',
|
||||
sizes: '180x180',
|
||||
href: '/favicon-apple-touch.png'
|
||||
}
|
||||
]
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user