feat: different logos for staging and dev

This commit is contained in:
Anthony Fu 2023-01-08 12:17:09 +01:00
parent c647a87ba1
commit 0297ed868b
19 changed files with 64 additions and 63 deletions

View file

@ -1,3 +1,5 @@
import type { BuildInfo } from '~~/types'
export interface Team {
github: string
display: string
@ -31,3 +33,7 @@ export const teams: Team[] = [
mastodon: 'sxzz@webtoo.ls',
},
].sort(() => Math.random() - 0.5)
export function useBuildInfo() {
return useRuntimeConfig().public.buildInfo as BuildInfo
}