seamless.parent.js logs many JSON parsing warnings when running Redux Dev Tools and/or Webpack Dev Server (See attached). These warnings are not service affecting but they do interfere with our ability to monitor and debug our application. If I remove the Redux Dev Tools middleware and use a real http server, the errors are not present.
I opened this issue, but I realize now that the code which generates the console warnings is actually part of postmessage which you are including as a submodule. postmessage is attempting to parse every message even those sent using window.postMessage directly. postmessage should be tagging and only parsing messages that it was used to send.
seamless.parent.js
logs many JSON parsing warnings when runningRedux Dev Tools
and/orWebpack Dev Server
(See attached). These warnings are not service affecting but they do interfere with our ability to monitor and debug our application. If I remove the Redux Dev Tools middleware and use a real http server, the errors are not present.I opened this issue, but I realize now that the code which generates the console warnings is actually part of
postmessage
which you are including as a submodule.postmessage
is attempting to parse every message even those sent usingwindow.postMessage
directly.postmessage
should be tagging and only parsing messages that it was used to send.