small fixes & SSR disabled

SSR was causing weird issues where error pages would flash because the
user wasn't logged in. I'm disabling it for now, but I will eventually
look into ways to fix the issue and re-enable it.
This commit is contained in:
DecDuck
2024-10-17 21:04:32 +11:00
parent 91b7e1071c
commit 1f575b2bc0
5 changed files with 24 additions and 15 deletions

View File

@@ -1,11 +1,11 @@
<template>
<content class="flex flex-col w-full min-h-screen bg-zinc-900">
<div class="flex flex-col w-full min-h-screen bg-zinc-900">
<UserHeader class="z-50" />
<div class="grow flex">
<NuxtPage />
</div>
<UserFooter class="z-50" />
</content>
</div>
</template>
<script setup lang="ts">