Fix base url on favicon and cover image

This commit is contained in:
William Oldham
2024-03-12 12:59:38 +00:00
parent 1cf56756d3
commit 0fb2861625
2 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ export default defineAppConfig({
description:
'movie-web is a free and open source streaming site, no ads, no tracking, no nonsense.',
url: 'https://movie-web.github.io/docs',
image: '/cover.png',
image: '/docs/cover.png',
socials: {
github: 'movie-web/movie-web',
},

View File

@@ -3,9 +3,9 @@ export default defineNuxtConfig({
extends: '@nuxt-themes/docus',
devtools: { enabled: true },
modules: [
// Remove it if you don't use Plausible analytics
// https://github.com/nuxt-modules/plausible
'@nuxtjs/plausible',
],
app: {
head: {
link: [{ rel: 'icon', type: 'image/x-icon', href: '/docs/favicon.ico' }],
},
},
});