change: loading performance

This commit is contained in:
Julian Krauser 2025-05-10 17:37:58 +02:00
parent 7c8be0ccb9
commit 716b5535ae
14 changed files with 129 additions and 98 deletions

15
plugins/global.ts Normal file
View file

@ -0,0 +1,15 @@
import type Global from "../types/single/global";
export default defineNuxtPlugin(async (nuxtApp) => {
const globalState = useState<Global | null>("global", () => null);
if (!globalState.value) {
const { findOne } = useStrapi();
const { data: global } = await useAsyncData("global", () => findOne<Global>("global"), {
server: true,
lazy: false,
default: () => {},
});
globalState.value = global.value?.data ?? null;
}
});