0.1.0 • Published 6 years ago

react-app-rewire-postcss-nested v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

react-app-rewire-postcss-nested

Add the postccs-nested plugin to your create-react-app via react-app-rewired

Install

npm:

$ npm install --saveDev react-app-rewire-postcss-nested

yarn:

$ yarn add --dev react-app-rewire-postcss-nested

Add it to your project

const rewirePostCSSNested = require('react-app-rewire-postcss-nested');

/* config-overrides.js */
module.exports = function override(config, env) {
  config = rewirePostCSSNested(config, env);
  return config;
}