“过程未定义” - 使用Polymer和Redux

时间:2018-05-18 09:01:43

标签: redux polymer

当我尝试使用Redux with Polymer(点亮元素)时出现此错误: “流程未定义ad redux.js”。 如何解决这个错误?

1 个答案:

答案 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>

像魅力一样。