I want to add a very simple file to my github project . See commit
style.less
body{ background-color: red; }
webpack.config.js
,{ test: /\.less$/, loaders: ['style', 'css', 'less'] }
Build command line command
webpack --config webpack.config.js -d
Index.html
I was expecting the deployle folder to now contain the bundle.css file, which contains the contents of my smaller file. That did not happen.
How to configure webpack to compile my lesser?
source share