Skip to content

Commit

Permalink
Update favicon paths in nuxt.config.ts and remove baseURL
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabinatix97 committed Dec 20, 2024
1 parent 4350b7d commit 7dc0274
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
baseURL: '/fabian-weiss/',
//baseURL: '/fabian-weiss/',
head: {
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/fabian-weiss/favicon/favicon.ico' },
{ rel: 'icon', type: 'image/svg+xml', href: '/fabian-weiss/favicon/favicon.svg' },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/fabian-weiss/favicon/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '96x96', href: '/fabian-weiss/favicon/favicon-96x96.png' },
{ rel: 'manifest', href: '/fabian-weiss/favicon/site.webmanifest' }
{ rel: 'icon', type: 'image/x-icon', href: '/favicon/favicon.ico' },
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon/favicon.svg' },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/favicon/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '96x96', href: '/favicon/favicon-96x96.png' },
{ rel: 'manifest', href: '/favicon/site.webmanifest' }
],
meta: [
{ name: 'apple-mobile-web-app-title', content: 'Fabian Weiß' }
Expand Down

0 comments on commit 7dc0274

Please sign in to comment.