Will Next JS automatically add all necessary browser prefixes to CSS styles defined with style jsx
, or do I need to write the browser supports manually in my styles when using Next JS?
transform: translate(50%, 50%);
-webkit-transform: translate(50%, 50%); // Will this line be added automatically during build time?
......