Be the first user to complete this post

  • 0
Add to List

Require the css file of a package using webpack

Recently I found myself wanting to use the react-select package and realized that I need to include the css that was present in its dist folder. My application is setup to use webpack along with webpack the module loaders - css-loader and style-loader. In order to directly use a file located at node_modules/react-select/dist/react-select.css, I added the following line to my own application's app.css file app.css

@import url('~react-select/dist/react-select.css');

...
... All my other css
...



Also Read:

  1. Automating Store and Action registration for multiple components using Fluxxor
  2. Pass down props using React childContextTypes in a deeply nested component tree
  3. Passing the store down implicitly via context in a react redux app
  4. Execution sequence of a React component's lifecycle methods
  5. combineReducers in reduxjs explained