inferno-app-rewire-sass
v1.4.2
Published
This package has been deprecated as Create Inferno App has [documented instructions](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-css-preprocessor-sass-less-etc) on how to setup witho
Downloads
2
Readme
Deprecated
This package has been deprecated as Create Inferno App has documented instructions on how to setup without ejecting.
Rewire create-inferno-app to use SASS!
Install
$ npm install --save inferno-app-rewire-sass
Add it to your project
- Rewire your app than modify
config-overrides.js
const rewireSass = require('inferno-app-rewire-sass');
/* config-overrides.js */
module.exports = function override(config, env) {
config = rewireSass(config, env);
return config;
}