This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/esm/client/app-next-dev.js
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

19 lines
849 B
JavaScript

// TODO-APP: hydration warning
import './app-webpack';
import { renderAppDevOverlay } from 'next/dist/compiled/next-devtools';
import { appBootstrap } from './app-bootstrap';
import { getOwnerStack } from '../next-devtools/userspace/app/errors/stitched-error';
import { isRecoverableError } from './react-client-callbacks/on-recoverable-error';
// eslint-disable-next-line @next/internal/typechecked-require
const instrumentationHooks = require('../lib/require-instrumentation-client');
appBootstrap((assetPrefix)=>{
const enableCacheIndicator = process.env.__NEXT_CACHE_COMPONENTS;
const { hydrate } = require('./app-index');
try {
hydrate(instrumentationHooks, assetPrefix);
} finally{
renderAppDevOverlay(getOwnerStack, isRecoverableError, enableCacheIndicator);
}
});
//# sourceMappingURL=app-next-dev.js.map