nestjs-bff icon indicating copy to clipboard operation
nestjs-bff copied to clipboard

Failed To Start App After Bootstap

Open zgunz42 opened this issue 5 years ago • 2 comments

I like your project and I try to running the project at the first time it look good but after visited the website I got not found response I try to read the log and I see that it failed to build front end and has node-sass not found and I think that the problem, then I try to install and keep failed on node-sass. On another project that uses node-sass like quasar install on my machine is working fine. I don't know why node-sass can't be installed on this project

zgunz42 avatar Sep 22 '20 05:09 zgunz42

I had the same issue. After installing the node-sass version explicitly it worked.

$ npm uninstall node-sass
$ npm install --save-dev [email protected]
$ yarn bootstrap
$ yarn start-with-docker

I didn't investigate further what was the root cause.

cstrempfer avatar Dec 24 '20 10:12 cstrempfer

I had the same issue. After installing the node-sass version explicitly it worked.

$ npm uninstall node-sass
$ npm install --save-dev [email protected]
$ yarn bootstrap
$ yarn start-with-docker

I didn't investigate further what was the root cause.

I try install node-gyp that what I founded in stackoverflow but another error shown up, I think node-sass package need to replace with sass which use dart instead of python

zgunz42 avatar Dec 29 '20 04:12 zgunz42