forked from Mirrors/elk
feat: dev indicator (#183)
This commit is contained in:
parent
72d40edbb6
commit
75aaf85e84
2 changed files with 6 additions and 2 deletions
2
app.vue
2
app.vue
|
@ -2,7 +2,7 @@
|
||||||
import { APP_NAME } from './constants'
|
import { APP_NAME } from './constants'
|
||||||
|
|
||||||
useHead({
|
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: [
|
link: [
|
||||||
{
|
{
|
||||||
rel: 'icon', type: 'image/svg+png', href: '/favicon.png',
|
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>
|
<template>
|
||||||
<!-- Use external to force refresh page and jump to top of timeline -->
|
<!-- 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>
|
<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>
|
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
|
||||||
<div>
|
<div>
|
||||||
Elk <sup text-sm italic text-secondary mt-1>alpha</sup>
|
Elk <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
|
||||||
</div>
|
</div>
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue