You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The note on allowAsyncCycles gives an example of using it for weak imports:
// allow import cycles that include an asyncronous import,// e.g. via import(/* webpackMode: "weak" */ './file.js')allowAsyncCycles: false,
But it would be nice if this also worked for regular async imports that aren't marked with webpackMode: "weak". It sounds like the default mode for async imports is lazy. https://webpack.js.org/api/module-methods/#magic-comments
The text was updated successfully, but these errors were encountered:
The note on allowAsyncCycles gives an example of using it for weak imports:
But it would be nice if this also worked for regular async imports that aren't marked with
webpackMode: "weak"
. It sounds like the default mode for async imports islazy
. https://webpack.js.org/api/module-methods/#magic-commentsThe text was updated successfully, but these errors were encountered: