@tomtwo/react-app-rewire-sass
Version:
wires up node-sass to compile sass files when using react-app-rewired with create-react-app
26 lines (15 loc) • 627 B
Markdown
An updated version of [react-app-rewire-sass](https://github.com/timarney/react-app-rewired/tree/master/packages/react-app-rewire-sass) which supports `react-scripts@1.1.0`, allowing you to import `.scss` files straight into Create React App projects without ejecting.
`npm install @tomtwo/react-app-rewire-sass`
or
`yarn add @tomtwo/react-app-rewire-sass`
In your `config-overrides.js`:
```js
const rewireSass = require('@tomtwo/react-app-rewire-sass');
module.exports = function override(config, env) {
config = rewireSass(config, env);
return config;
};
```