/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
shared/components/PageScripts.astro
10 строк
402 B
codecalm
Fix Prettier formatting regression and Astro type-check errors
03 авг 2026, 02:26
03 авг 2026, 02:26
f27c70a
Код
Авторство
О чём код?
--- // Separate component so drainPageScripts() executes only at this point of the // render stream (after the page content render has STARTED — registrations are // synchronous, script content may be a promise). import { drainPageScripts } from '@shared/lib/page-scripts' const scripts = await Promise.all(drainPageScripts()) --- {scripts.length > 0 && <Fragment set:html={scripts.join('\n')} />}