Skip to content

Commit

Permalink
fix(mfe-dev-server): Make deveRemotes optional
Browse files Browse the repository at this point in the history
Not everyone is starting up MFE with --devRemotes but uses static remotes.

this feature causes issues.
  • Loading branch information
MaxSassen authored May 30, 2024
1 parent 2787a58 commit 1918dc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function startRemotes(
'module-federation-dev-server'
);

const configurationOverride = options.devRemotes.find(
const configurationOverride = options.devRemotes?.find(
(
r
): r is {
Expand Down

0 comments on commit 1918dc5

Please sign in to comment.