Ember - Cli Error: spawn ENOENT

I am cloning this project to run locally.

These are the steps I took in the terminal

git clone https://github.com/lrdiv/ember-soundcloud.git cd ember soundcloud ember install ember server 

I got these errors in my terminal:

enter image description hereenter image description here

And this is what I see in my http: // localhost: 4200 /

enter image description here

The server is running, so this is a good sign! but how can i fix it?

0
source share
1 answer

Try using ember-cli-sass instead of broccoli-ruby-sass in your package. json Especially if you upgraded the ember-cli version from 0.0.39

Edit: it also appears that bootstrap-sass is in a different directory than the one specified in app/styles/app.sass

0
source

Source: https://habr.com/ru/post/1213936/


All Articles