[Solved]autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated
Laravel
Mohit Mozumder
Problem:
I am facing following deprecation error in my laravel app autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.Solution:
You can add following line in package.json
For yarn:
"resolutions": {
"autoprefixer": "10.4.5"
}
or if you're using npm:
"overrides": {
"autoprefixer": "10.4.5"
}
Thank you for reading the article. If you still face any problems feel free to contact us.