Webpack global import hints are not working as expected

Viewed 9

After the release of Global dynamic import hint, i thought to remove all of my import hint inside source code and move it globally to the config file. But no module preloaded.

Am i missing something.

here is my webpack config

  module: {
    parser: {
      javascript: {
        dynamicImportMode: "eager",
        dynamicImportPreload: true
      }
   }
 }
0 Answers
Related