Solved — autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated

npm install autoprefixer@10.4.5 — save-exact — fails

WARNING in ./node_modules/bootstrap/dist/css/bootstrap.min.css (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[5].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[5].use[2]!./node_modules/source-map-loader/dist/cjs.js!./node_modules/bootstrap/dist/css/bootstrap.min.css) Module Warning (from ./node_modules/postcss-loader/dist/cjs.js): Warningautoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.webpack compiled with 1 warning

Add following line in package.json:

If you’re using yarn:

"resolutions": {
"autoprefixer": "10.4.5"
}

If you’re using npm:

"overrides": {
"autoprefixer": "10.4.5"
}

--

--