From d6740ec5d09c7de081d6cdd72fce6fe73e2d4879 Mon Sep 17 00:00:00 2001 From: badbl0cks <4161747+badbl0cks@users.noreply.github.com> Date: Mon, 11 Aug 2025 10:33:38 -0700 Subject: [PATCH] feat: display app version in footer --- Dockerfile | 2 +- app/app.vue | 1 + nuxt.config.ts | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 573dec0..74257a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ SHELL ["bash", "-exc"] WORKDIR /app # Copy source code (excluding semantic-release artifacts) -COPY nuxt.config.ts tsconfig.json tailwind.config.js eslint.config.mjs ./ +COPY nuxt.config.ts tsconfig.json tailwind.config.js eslint.config.mjs package.json ./ COPY app/ ./app/ COPY server/ ./server/ COPY public/ ./public/ diff --git a/app/app.vue b/app/app.vue index 9554314..9c712de 100644 --- a/app/app.vue +++ b/app/app.vue @@ -52,6 +52,7 @@
Copyright © {{ new Date().getFullYear() }}
+v{{ $config.public.version }}