Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nextjs-mf): delete duplicate code lines in nextjs-mf #2499

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/poor-dots-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@module-federation/nextjs-mf': patch
---

fix(nextjs-mf): delete duplicate code lines
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class NextFederationPlugin {
],
//@ts-ignore
exposes: {
...(this._extraOptions.skipSharingNextInternals ? {} : defaultExpose),
...defaultExpose,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should remain here. Users may want to disable sharing defaults in next.

Copy link
Contributor Author

@chussum chussum May 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahh i see, yes. ill appprove.

...this._options.exposes,
...(this._extraOptions.exposePages
? exposeNextjsPages(compiler.options.context as string)
Expand Down
Loading