Failed to compile. webpack is not a function
I ran into a problem with this same symptom after upgrading all of my node modules including react and redux, but in particular react-dev-utils to v8.0.0. The createCompiler()
function has been changed to expect an object rather than multiple parameters (I guess this will provide greater flexibility in the future).
I changed my start.js from:
const compiler = createCompiler(webpack, config, appName, urls, useYarn);
to:
const compiler = createCompiler({ webpack, config, appName, urls, useYarn });