@remix-run/server-runtime
Version:
Server runtime for Remix
19 lines (17 loc) • 452 B
JavaScript
/**
* @remix-run/server-runtime v2.16.8
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
function createEntryRouteModules(manifest) {
return Object.keys(manifest).reduce((memo, routeId) => {
memo[routeId] = manifest[routeId].module;
return memo;
}, {});
}
export { createEntryRouteModules };