2022-11-28 09:01:14 +00:00
|
|
|
import { APP_NAME } from '~/constants'
|
|
|
|
|
|
|
|
const isDev = process.dev
|
|
|
|
const isPreview = window.location.hostname.includes('deploy-preview')
|
|
|
|
|
|
|
|
export function usePageHeader() {
|
2022-11-29 21:13:43 +00:00
|
|
|
const i18n = useI18n()
|
2022-11-28 09:01:14 +00:00
|
|
|
useHead({
|
2022-11-29 21:13:43 +00:00
|
|
|
htmlAttrs: {
|
|
|
|
lang: () => i18n.locale.value,
|
|
|
|
},
|
2022-11-28 09:01:14 +00:00
|
|
|
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
2022-11-29 13:38:01 +00:00
|
|
|
bodyAttrs: {
|
|
|
|
class: 'overflow-x-hidden',
|
|
|
|
},
|
2022-11-28 09:01:14 +00:00
|
|
|
link: [
|
|
|
|
{ rel: 'icon', type: 'image/svg+png', href: isDev || isPreview ? '/favicon-dev.png' : '/favicon.png' },
|
|
|
|
],
|
|
|
|
})
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-unused-expressions
|
|
|
|
isDark.value
|
|
|
|
}
|