fix build throwing document not defined error

This commit is contained in:
lightling 2024-03-14 00:40:10 -04:00
parent 32162b5386
commit 42007ff112
2 changed files with 6 additions and 10 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref } from 'vue'
import { onMounted, ref } from 'vue'
import { useRoute } from 'vue-router'
import { useRouteStore } from 'src/routes'
@ -13,7 +13,7 @@ const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path]
const headerConfig = routeStore._header
const init = async () => {
onMounted(async () => {
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
staleStylesheets.forEach(stylesheet => {
document.removeChild(stylesheet)
@ -26,9 +26,7 @@ const init = async () => {
document.head.appendChild(newElement)
})
ready.value = true
}
init()
})
</script>
<template lang="pug">

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref } from 'vue'
import { onMounted, ref } from 'vue'
import { useRoute } from 'vue-router'
import EmbedableContent from 'src/components/shared/embedable-content.vue'
@ -12,11 +12,9 @@ const currentRoute = useRoute()
const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path]
const init = async () => {
onMounted(async () => {
content.value = await fetchAndParseMarkdown(routeConfig.content)
}
init()
})
</script>
<template lang="pug">