Does CRA add prefixes to CSS and with what exact package? #9852
-
Although it's mentioned in the README file here and in the documentation website that CRA adds prefixes to CSS rules when ejecting, and assuming the package is This question got my attention while setting up |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Autoprefixer is a part of CRA, you can find the documentation here: https://create-react-app.dev/docs/post-processing-css/ So it will not show as a direct dependency. |
Beta Was this translation helpful? Give feedback.
Autoprefixer is a part of CRA, you can find the documentation here: https://create-react-app.dev/docs/post-processing-css/
It is a transitive dependency (part of
postcss-preset-env
)create-react-app/packages/react-scripts/config/webpack.config.js
Line 133 in 5867170
So it will not show as a direct dependency.