Autoprefixer loader adds autoprefix for all css, however it does not add autoprefix for font-smoothing : antialiased .
Autoprefixer
font-smoothing : antialiased
why doesn't he add autoprefix for this?
I assume this is a vendor specific attribute (-webkit-). Thus, there are no other prefixes with this attribute. You can see a small discussion on Twitter: https://twitter.com/autoprefixer/status/444429500789841921?lang=nl
Found another site that explains usage more: https://davidwalsh.name/font-smoothing
TL DR:
For other manufacturers, you will need one more setting (smoothing and grayscale)
.element { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
Source: https://habr.com/ru/post/1263714/More articles:Update field value in InfluxDB - sql-updateExporting a function in typescript "declaration or waiting for a statement" - typescriptIn what order should a woman return cats in order to minimize time? - algorithmPostgres - Running a large jsonb column - performanceHow to create a Postgresql JSONB array in an array index? - arraysHow to allow & between a word in url with Spanish characters without url encoding - c #In vue.js 2, measure the height of the component when slots are set - vue.jsHow to make NSURLSession POST request in Swift - iosDropzone - Error Opening: No URL - javascriptPandas groupby hour of the day in a dictionary - pythonAll Articles