feat(seo): add keywords meta tag to app head

This commit is contained in:
scout 2025-01-08 16:06:43 +08:00
parent 9081080035
commit a214b6c8a6

View File

@ -8,6 +8,7 @@ useHead({
title: useI18n().t('appSetting.appName'), title: useI18n().t('appSetting.appName'),
meta: [ meta: [
{ name: 'description', content: useI18n().t('appSetting.appDescription') }, { name: 'description', content: useI18n().t('appSetting.appDescription') },
{ name: 'keywords', content: useI18n().t('appSetting.appKeyWords') },
], ],
}) })