The bundle that is created when you run --includeComplete pulls in a dependency (pie-control-panel) that uses an old version of material-ui (all the other elements have moved to @material-ui/core). This old library is trying to access a non-existent property from React. This triggers a runtime error.
To fix: update material-ui -> @material-ui/core in pie-control-panel.
The bundle that is created when you run
--includeComplete
pulls in a dependency (pie-control-panel) that uses an old version of material-ui (all the other elements have moved to @material-ui/core). This old library is trying to access a non-existent property from React. This triggers a runtime error.To fix: update
material-ui
->@material-ui/core
inpie-control-panel
.