Aktualisiere die Version auf 3.1.1 und entferne die veraltete APP_VERSION-Konstante
All checks were successful
Deploy production / deploy (push) Successful in 1m1s

This commit is contained in:
Torsten Schulz (local)
2026-08-27 07:30:38 +02:00
parent 4787700cd0
commit c239ef19d1
6 changed files with 12 additions and 12 deletions

View File

@@ -53,10 +53,9 @@ import { computed } from 'vue'
import StatusBox from './components/StatusBox.vue'
import SideMenu from './components/SideMenu.vue'
import AppBrand from './components/AppBrand.vue'
import { APP_VERSION } from '@/config/version'
const authStore = useAuthStore()
const appVersion = APP_VERSION
const appVersion = __APP_VERSION__
const router = useRouter()
const route = useRoute()

View File

@@ -1,2 +0,0 @@
/** Sichtbare Web-App-Version (synchron mit package.json). */
export const APP_VERSION = '3.1.0'