import { shallowRef, computed, readonly } from 'vue'; function useSsrBoot() { const isBooted = shallowRef(false); const ssrBootStyles = computed(() => !isBooted.value ? { transition: "none !important" } : void 0); return { ssrBootStyles, isBooted: readonly(isBooted) }; } export { useSsrBoot as u };