Skip to content

Commit

Permalink
fix(enhanced): update embedded runtime path to use the correct module…
Browse files Browse the repository at this point in the history
… federation package
  • Loading branch information
ScriptedAlchemy committed Jan 21, 2025
1 parent 757696c commit e0dcc71
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@ const BundlerRuntimePath = require.resolve(
const RuntimePath = require.resolve('@module-federation/runtime', {
paths: [RuntimeToolsPath],
});
const EmbeddedRuntimePath = require.resolve('@module-federation/runtime-core', {
paths: [RuntimeToolsPath],
});
const EmbeddedRuntimePath = require.resolve(
'@module-federation/runtime/embedded',
{
paths: [RuntimeToolsPath],
},
);

const federationGlobal = getFederationGlobalScope(RuntimeGlobals);

Expand Down

0 comments on commit e0dcc71

Please sign in to comment.