/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/e2e/switchable-runtime/utils/runtime.js
14 строк
399 B
Tim Neutkens
Ensure server components entries are not part of the pages buildmanifest (#38416)
07 июл 2022, 23:17
Не верифицирован
07 июл 2022, 23:17
aa0ba3c
Код
Авторство
О чём код?
export default function Runtime() { let runtime if (typeof window !== 'undefined') { // We have to make sure it matches the existing markup when hydrating. runtime = document.getElementById('__runtime').textContent } else { runtime = 'Runtime: ' + (process.version ? `Node.js ${process.version}` : 'Edge/Browser') } return <span id="__runtime">{runtime}</span> }