Env.vue 461 B

123456789101112131415161718192021
  1. <!--
  2. Env bar
  3. Barre d'alerte qui s'affiche lorsque l'utilisateur n'est pas dans un environnement de production
  4. -->
  5. <template>
  6. <UiSystemBar
  7. v-if="show"
  8. :text="$t('not_production_environment', { env: env })"
  9. icon="fas fa-exclamation-triangle"
  10. class="theme-warning"
  11. />
  12. </template>
  13. <script setup lang="ts">
  14. const runtimeConfig = useRuntimeConfig()
  15. const env = runtimeConfig.public.env ?? 'unknown'
  16. const show = env !== 'production'
  17. </script>