fix: Update SEO meta tags in app.vue

This commit is contained in:
ccbikai 2024-06-10 11:13:06 +08:00
parent 036265544f
commit 3f08cf0439
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<script setup>
const { title, description, image } = useAppConfig()
useServerSeoMeta({
title,
useSeoMeta({
title: title + ' - ' + description,
description,
ogType: 'website',
ogTitle: title,

View File

@ -5,7 +5,7 @@ import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
// antfu(),
{
ignores: ['components/ui', 'scripts/build-map.js'],
ignores: ['components/ui'],
},
{
rules: {