当我尝试使用Redux with Polymer(点亮元素)时出现此错误: “流程未定义ad redux.js”。 如何解决这个错误?
答案 0 :(得分:4)
我发现了Polymer的PWA入门套件的黑客解决方案。
将此行添加到index.html:
<script>
// HACK(keanulee): The Redux package assumes `process` exists - mock it here before
// the module is loaded.
window.process = {
env: {
NODE_ENV: 'production'
}
};
</script>
像魅力一样。