Initial boiler plate project
This commit is contained in:
23
node_modules/next/dist/build/webpack/loaders/next-flight-loader/action-client-wrapper.js
generated
vendored
Normal file
23
node_modules/next/dist/build/webpack/loaders/next-flight-loader/action-client-wrapper.js
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
// This file must be bundled in the app's client layer, it shouldn't be directly
|
||||
// imported by the server.
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "createServerReference", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return createServerReference;
|
||||
}
|
||||
});
|
||||
const _appcallserver = require("next/dist/client/app-call-server");
|
||||
function createServerReference(id) {
|
||||
// Since we're using the Edge build of Flight client for SSR [1], here we need to
|
||||
// also use the same Edge build to create the reference. For the client bundle,
|
||||
// we use the default and let Webpack to resolve it to the correct version.
|
||||
// 1: https://github.com/vercel/next.js/blob/16eb80b0b0be13f04a6407943664b5efd8f3d7d0/packages/next/src/server/app-render/use-flight-response.tsx#L24-L26
|
||||
const { createServerReference: createServerReferenceImpl } = !!process.env.NEXT_RUNTIME ? require("react-server-dom-webpack/client.edge") : require("react-server-dom-webpack/client");
|
||||
return createServerReferenceImpl(id, _appcallserver.callServer);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=action-client-wrapper.js.map
|
||||
Reference in New Issue
Block a user