Skip to content

Commit

Permalink
Merge branch 'canary' into simplify-flush-effects-call
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Apr 8, 2022
2 parents a91ffcb + d8623bb commit f694e2e
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -238,7 +238,12 @@ export default async function transformSource(
__webpack_require__,
_: () => {
${imports
.map((importSource) => `require('${importSource}');`)
.map(
(importSource) =>
`import(/* webpackMode: "eager" */ ${JSON.stringify(
importSource
)});`
)
.join('\n')}
},
server: ${isServerExt ? 'true' : 'false'}
Expand Down

0 comments on commit f694e2e

Please sign in to comment.