【发布时间】:2022-06-12 20:01:04
【问题描述】:
在使用 Vite 和 PostCSS(通过 SvelteKit)时,我正在从使用已弃用选择器的库中导入样式表,并收到如下警告:
[vite:css] Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
651| @media print {
652| /* Prevent printers from removing background-images of controls. */
653| .leaflet-control {
| ^
654| -webkit-print-color-adjust: exact;
655| color-adjust: exact;
我无法控制此文件,因此最好禁止仅来自此库的警告(以及可能来自从 node_modules 导入的文件的所有警告)。
有人可以指出我在 Vite 和/或 PostCSS 配置中可以做到的地方吗?
【问题讨论】: