File size: 508 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## Removing `sanitize.css`

To remove `sanitize.css` you will need to remove it from both:

- [`app.js`](../../app/app.js)

```diff
import FontFaceObserver from 'fontfaceobserver';
import history from 'utils/history';
-import 'sanitize.css/sanitize.css';

// Import root app
import App from 'containers/App';
```

- [`package.json`](../../package.json)!

```diff
"dependencies": {
  ...
  "redux-saga": "0.14.3",
  "reselect": "2.5.4",
- "sanitize.css": "4.1.0",
  "styled-components": "1.4.3",
  ...
},
```