Files
ncd-fe/packages/pl-fe/src/precheck.ts
nicole mikołajczyk 7cfb7fbbf2 nicolium: renames
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-26 22:06:33 +01:00

16 lines
561 B
TypeScript

/**
* Precheck: information about the site before anything renders.
* @module @/precheck
*/
/** Whether pre-rendered data exists in Pleroma's format. */
const hasPrerenderPleroma = Boolean(document.getElementById('initial-results'));
/** Whether pre-rendered data exists in Mastodon's format. */
const hasPrerenderMastodon = Boolean(document.getElementById('initial-state'));
/** Whether initial data was loaded into the page by server-side-rendering (SSR). */
const isPrerendered = hasPrerenderPleroma || hasPrerenderMastodon;
export { isPrerendered };