File size: 978 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import { appBootstrap } from './app-bootstrap'
import { isRecoverableError } from './react-client-callbacks/on-recoverable-error'
window.next.version += '-turbo'
;(self as any).__webpack_hash__ = ''
// eslint-disable-next-line @next/internal/typechecked-require
const instrumentationHooks = require('../lib/require-instrumentation-client')
appBootstrap(() => {
const { hydrate } = require('./app-index') as typeof import('./app-index')
try {
hydrate(instrumentationHooks)
} finally {
if (process.env.NODE_ENV !== 'production') {
const { getComponentStack, getOwnerStack } =
require('../next-devtools/userspace/app/errors/stitched-error') as typeof import('../next-devtools/userspace/app/errors/stitched-error')
const { renderAppDevOverlay } =
require('next/dist/compiled/next-devtools') as typeof import('next/dist/compiled/next-devtools')
renderAppDevOverlay(getComponentStack, getOwnerStack, isRecoverableError)
}
}
})
|