UNPKG

next

Version:

The React Framework

32 lines (31 loc) 1.21 kB
/** * Wraps a module getter from the generated loader tree code so that the * result of an async module (e.g. due to a top-level await) is tracked as a * pending import, which the cache warming phase of a prerender waits for. * Both bundlers emit this around every module getter in the loader tree. */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "instrumentModuleGetter", { enumerable: true, get: function() { return instrumentModuleGetter; } }); function instrumentModuleGetter(getter) { if (process.env.NEXT_RUNTIME === 'edge' || !process.env.__NEXT_CACHE_COMPONENTS) { // The tracking is only consumed when prerendering with Cache Components, // which is not supported in the edge runtime (and the tracking relies on // Node.js APIs). return getter; } else { return ()=>{ const { trackPendingImport } = require('./track-module-loading.external'); const exportsOrPromise = getter(); trackPendingImport(exportsOrPromise); return exportsOrPromise; }; } } //# sourceMappingURL=instrument-module-getter.js.map