I'm making a web application based on CRA 3.4.1 with a component library PrimeReact 4.1.2.
My own CSS gets processed thanks to CRA's PostCSS setup, e.g. each display: flex in the sources gets the prefixed -ms-flexbox version added in the built files (main.<hash>.chunk.css), enabling IE10 support.
The problem is PrimeReact components have their own CSS bundled, and this CSS does not get processed when I'm building my app. As a result, the built 2.<hash>.chunk.css doesn't have the vendor prefixed rules.
How do I enable the processing of such 3rd party CSS? Preferably without ejecting. Can it be configured? I don't see anything about this in the official docs.
Maybe there is a way to exclude 3rd party CSS, and then I'll just import '../node_modules/primereact/resources/primereact.css' to have it processed as my own CSS?