我有一个正在执行
之类的节点模块if (window.location.protocol === 'https:') {
(!isDevEnvironment)
? require(['https://url/index.js'])
: require(['https://url/otherindex.js']);
}
当我试图通过webpack捆绑东西时,我期望出现类似的错误
无法解析“ https://url/index.js”。
由于不使用此节点模块-重写它不是一种选择-我该如何解决?