Autoprefixer: The color-adjust shorthand is currently deprecated
The full warning is:
Warning
(2728:3) autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
The easy fix:
rename color-adjust
to print-color-adjust
This didn’t work for me as the issue is in the node_modules
directory.
Other fix: add the following to your package.json
:
"resolutions": {
"autoprefixer": "10.4.5"
},
Then run the following again: yarn install