fix: Update SEO meta tags in app.vue
This commit is contained in:
parent
036265544f
commit
3f08cf0439
2 changed files with 3 additions and 3 deletions
4
app.vue
4
app.vue
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue