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

View file

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