Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 29, 2024
1 parent 8f8fcbe commit 577849d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ impl EcmascriptChunkPlaceable for NextServerComponentModule {
let mut exports = BTreeMap::new();
exports.insert(
"default".into(),
EsmExport::ImportedBinding(*module_reference, "default".into(), false),
EsmExport::ImportedBinding(module_reference, "default".into(), false),
);

Ok(EcmascriptExports::EsmExports(
EsmExports {
exports,
star_exports: vec![*module_reference],
star_exports: vec![module_reference],
}
.resolved_cell(),
)
Expand Down

0 comments on commit 577849d

Please sign in to comment.