|
|
@@ -14,9 +14,10 @@
|
|
|
<script setup lang="ts">
|
|
|
import {ref} from "@vue/reactivity";
|
|
|
import {useDisplay} from "vuetify";
|
|
|
+ import UrlUtils from "~/services/utils/urlUtils";
|
|
|
|
|
|
const runtimeConfig = useRuntimeConfig()
|
|
|
- const homeUrl = runtimeConfig.baseUrlAdminLegacy
|
|
|
+ const homeUrl = UrlUtils.join(runtimeConfig.baseUrlAdminLegacy, '#', 'dashboard')
|
|
|
|
|
|
const { mdAndUp } = useDisplay()
|
|
|
|