fix(front): create head without old options
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
89641c502e
commit
45f8757d72
|
@ -1,4 +1,4 @@
|
||||||
import { provide, createApp, h, computed, ref } from "vue";
|
import { provide, createApp, h, ref } from "vue";
|
||||||
import VueScrollTo from "vue-scrollto";
|
import VueScrollTo from "vue-scrollto";
|
||||||
// import VueAnnouncer from "@vue-a11y/announcer";
|
// import VueAnnouncer from "@vue-a11y/announcer";
|
||||||
// import VueSkipTo from "@vue-a11y/skip-to";
|
// import VueSkipTo from "@vue-a11y/skip-to";
|
||||||
|
@ -59,11 +59,7 @@ apolloClient
|
||||||
instanceName.value = configData.config?.name;
|
instanceName.value = configData.config?.name;
|
||||||
});
|
});
|
||||||
|
|
||||||
const head = createHead({
|
const head = createHead();
|
||||||
titleTemplate: computed(() =>
|
|
||||||
instanceName.value ? `%s | ${instanceName.value}` : "%s"
|
|
||||||
).value,
|
|
||||||
});
|
|
||||||
app.use(head);
|
app.use(head);
|
||||||
|
|
||||||
app.mount("#app");
|
app.mount("#app");
|
||||||
|
|
Loading…
Reference in a new issue