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