admin管理员组

文章数量:1392050

If you import a module in a webpack app from an HTTP address e.g.

import * as importedPackage from ".js";

What does Web Pack then do with this module when it bundles, does it download it and include it in the bundle at build time or does it treat it as an external dependency and load it at runtime.

Can this behavior be controlled in the Web Pack config?

本文标签: Webpack importing module from HTTP addressStack Overflow