This repository was archived by the owner on Mar 30, 2021. It is now read-only.

Description
(NOTE: This issue can be broken down into many different interconnected issues, but for sake of keeping things simple, I have jotted down what all I felt was wrong here)
I was trying to setup a development server. But it took me a while to figure out the following things-
- One has to run
less first. Only then build or start will be successful.
- Since
less is not added to the webpack.config.js thus in case someone has changed his styes, he or she will have to run less again.
- Custom
dev server is being used, instead of the one being provided by webpack. The webpack one automatically refreshes the webpage and in some browsers also clears the cache (last time I used it). It will help in cleaning the directory of files which the developer doesn't need.
One optimal solution includes updating the webpack.config.js to include less and serve tasks.
(Somewhat unrelated)
- On the examples, the class of the component one creates is not added to the examples component. Hence the custom styles are not.