TypeError: MiniCssExtractPlugin is not a constructor
There is an open issue for this on the create-react-app repository. It looks like this comment has a temporary fix of adding the following to file package.json: The below works if you’re using Yarn: “resolutions”: { “mini-css-extract-plugin”: “2.4.5” }, Use the command below for npm: npm i -D –save-exact mini-css-extract-plugin@2.4.5 Update: As of January 17, … Read more