can't compile witn webpack-encore, the webpack requires version ^8.0.0

1.1k views Asked by At

WARNING Webpack Encore requires version ^8.0.0 of sass-loader, but your version (7.3.1) is too old. The related feature will probably not work correctly.

1

There are 1 answers

0
Preciel On

The message is quite clear in itself, you installed a version of sass-loader too old.
You just have to replace it.

yarn remove sass-loader
yarn add sass-loader@^8.0.0