I know Angular compiles code and serves it as html, javascript and css. So my question is: Do I need -moz- and -webkit- in an angular project or does angular compile the css to a format readable by any browser?
Asked
Active
Viewed 202 times
0
-
2I don't believe so, I have seen people suggest adding [autoprefixer](https://www.npmjs.com/package/autoprefixer) to webpack. – Get Off My Lawn Jul 12 '22 at 17:16
-
1Angular will take care of that. You don't need any additional library to do it – Drenai Jul 12 '22 at 23:01
-
@Drenai Does React take care of that too? Or does someone need an extra library when using react? – YulePale Jul 13 '22 at 04:04
-
Look in the file `.browserslistrc` and you'll see precisely what browsers are supported. – Chris Hamilton Jul 13 '22 at 10:10