mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
fix: add lang
attr to <html>
This commit is contained in:
parent
608aad56dd
commit
661e53f639
1 changed files with 4 additions and 0 deletions
|
@ -4,7 +4,11 @@ const isDev = process.dev
|
|||
const isPreview = window.location.hostname.includes('deploy-preview')
|
||||
|
||||
export function usePageHeader() {
|
||||
const i18n = useI18n()
|
||||
useHead({
|
||||
htmlAttrs: {
|
||||
lang: () => i18n.locale.value,
|
||||
},
|
||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
||||
bodyAttrs: {
|
||||
class: 'overflow-x-hidden',
|
||||
|
|
Loading…
Reference in a new issue