fix: add `lang` attr to `<html>`
parent
608aad56dd
commit
661e53f639
|
@ -4,7 +4,11 @@ const isDev = process.dev
|
||||||
const isPreview = window.location.hostname.includes('deploy-preview')
|
const isPreview = window.location.hostname.includes('deploy-preview')
|
||||||
|
|
||||||
export function usePageHeader() {
|
export function usePageHeader() {
|
||||||
|
const i18n = useI18n()
|
||||||
useHead({
|
useHead({
|
||||||
|
htmlAttrs: {
|
||||||
|
lang: () => i18n.locale.value,
|
||||||
|
},
|
||||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
||||||
bodyAttrs: {
|
bodyAttrs: {
|
||||||
class: 'overflow-x-hidden',
|
class: 'overflow-x-hidden',
|
||||||
|
|
Loading…
Reference in New Issue