Files
dragonroll/frontend/app/components/partials/VersionRender.vue
Aran Roig 475887420c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 39s
Added icon change
2026-04-26 21:12:08 +02:00

25 lines
463 B
Vue

<script setup>
const config = useRuntimeConfig()
</script>
<template>
<div class="version-render">
<span>Dragonroll {{ config.public.gitTag }}-{{ config.public.gitCommit }}@{{ config.public.gitBranch }}</span>
<br><span>{{ config.public.buildDate }}</span>
</div>
</template>
<style scoped>
.version-render {
position: absolute;
bottom: 0;
left: 0;
user-select: none;
}
span{
color: rgb(59, 59, 59);
}
</style>