feat: dev indicator (#183)
parent
72d40edbb6
commit
75aaf85e84
2
app.vue
2
app.vue
|
@ -2,7 +2,7 @@
|
|||
import { APP_NAME } from './constants'
|
||||
|
||||
useHead({
|
||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${import.meta.env.DEV ? ' (dev)' : ''}`,
|
||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${import.meta.env.DEV ? ' (dev)' : window.location.hostname.includes('deploy-preview') ? '(preview)' : ''}`,
|
||||
link: [
|
||||
{
|
||||
rel: 'icon', type: 'image/svg+png', href: '/favicon.png',
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
<script setup>
|
||||
const sub = import.meta.env.DEV ? 'dev' : window.location.hostname.includes('deploy-preview') ? 'preview' : 'alpha'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- Use external to force refresh page and jump to top of timeline -->
|
||||
<NuxtLink flex px3 py2 items-center text-2xl gap-2 hover:bg-active focus-visible:ring="2 current" rounded-full to="/" external>
|
||||
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
|
||||
<div>
|
||||
Elk <sup text-sm italic text-secondary mt-1>alpha</sup>
|
||||
Elk <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
|
||||
</div>
|
||||
</NuxtLink>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue