Cereal Killer
Cereal Killer

Reputation: 3414

Livereload with ember-cli

I'm trying to setup livereload in a brand new ember app created with ember-cli

after using

ember new app

and setting up the .ember-cli file:

{
    "port": 9000,
    "liveReload": true
}

I've launched ember server

in the console I can see:

version: 0.0.46
Livereload server on port 40529
Serving on http://0.0.0.0:9000

Build successful - 1939ms.

but

(I use latest chrome)

There is something I'm missing?

Upvotes: 1

Views: 706

Answers (1)

sheriffderek
sheriffderek

Reputation: 9053

I'm not sure what was going on in September 2014, but the live-reload is on by default in the current builds. You definitely need to open your browser yourself though. Most commonly, users forget to npm sass or stylus and wonder why it's not working - but that is another issue.

Upvotes: 1

Related Questions