Skip to content

Latest commit

 

History

History
76 lines (57 loc) · 1.46 KB

remove.md

File metadata and controls

76 lines (57 loc) · 1.46 KB

Removing sanitize.css

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

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

// Import root app
import App from 'containers/App';
"dependencies": {
  ...
  "redux-saga": "0.14.3",
  "reselect": "2.5.4",
- "sanitize.css": "4.1.0",
  "styled-components": "1.4.3",
  ...
},

Removing React Semantic UI

Delete the semantic folder found in the root of the project

To remove React Semantic UI you will need to remove it from both:

resolve: {
    modules: ['node_modules', 'app'],
    extensions: ['.js', '.jsx', '.react.js'],
    mainFields: ['browser', 'jsnext:main', 'main'],
    - alias: {
      '../../theme.config$': path.join(
        __dirname,
        '../../semantic/theme.config',
      ),
    },
  },
import FontFaceObserver from 'fontfaceobserver';
import history from 'utils/history';
import 'sanitize.css/sanitize.css';
-import '../semantic/semantic.less';

// Import root app
import App from 'containers/App';
"dependencies": {
  ...
  - "semantic-ui-react": "^0.87.3",
  - "semantic-ui-css": "^2.4.1",
  - "semantic-ui-less": "^2.4.1",
  ...
},