I scaffold an app using jhipster which is microservice gateway using cassandra db and using maven to build which was building fine after scaffold.i ran gulp command to for the l
Make sure you have the config.json file. Then do the npm install
and npm start
.
This might give this error if you don't have this config file.
It is a problem with older version of node-sass
. It doesn't create vendor folder
in node_modules/node-sass
. I have updated the version of node-sass and it worked fine for me.
My older version of node-sass was 3.1.0
I simply did:
npm install node-sass@3.7.0
This should solve your problem as well.
No need to delete node modules, its because of your sass-loader version is different
Here's what worked for me
$npm update
$npm install
$node node_modules/node-sass/scripts/install.js
$npm rebuild node-sass