nestjs-bff
nestjs-bff copied to clipboard
Failed To Start App After Bootstap
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
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 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-dockerI 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