问题描述:
vue项目里安装最新版bootstrap,启动后发出这样一段警告:
warning in ./node_modules/bootstrap/dist/css/bootstrap.min.css
Module Warning (from ./node_modules/postcss-loader/dist/cjs.js):
Warning
(6:29521) autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
中文网上关于这个问题的描述不多,github里有专门这个问题的讨论:
https://github.com/twbs/bootstrap/issues/36259
在里面有多种的解决方式,我试了其中一种就OK了。
解决方法:
安装autoprefixer@10.4.5
npm install autoprefixer@10.4.5 --save-exact
或
yarn add autoprefixer@10.4.5 --save-exact
安装完成重新启动后就不再提示 warning了,大家可以尝试一下,或者试试里面提到的其他方法。