I got a warning message with the rails 6.0.3 new hello_myapp command.
The message looks like this
warning " > [email protected]" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
solution It was solved by executing the following command in the folder hierarchy of hello_myapp.
yarn upgrade webpack@^4.0.0
I referred to this site.
https://stackoverflow.com/questions/61565543/rails-webpack-dev-server-has-unmet-peer-dependency
Recommended Posts