我为外部库提供了以下webpack 2配置集:
externals: {
"importnameoflibrary": { root: "library.component" }
...
}
这会尝试加载以下内容(由于点表示法而无效:
root["library.component"]
然而,我需要做的就是这个(有效):
root["library"]["component"] or root.library.component
有人能指出我正确的方向吗?
答案 0 :(得分:1)
您可以使用数组作为值:
externals: {
"importnameoflibrary": { root: ["library", "component"] }
...
}