Ember-cli: Live reload not working

I wasn't the only one with this issue and my friend found a solution that works.

Add the following lines to your .ember-cli in the root of your project:

"liveReload": true,
"watcher": "polling"

Once you restart the server, it should watch for changes to your directory.


Might be simplistic answer, but this was solution I needed
In Windows, run Node cmd in Administrator mode


If you are on Mac then install watchman using brew install watchman instead of npm install watchman.

And if you are using Sublime Text then add below code to your sublime user settings json

Prefences -> Settings - User

{
"folder_exclude_patterns":
    [
        ".svn",
        ".git",
        ".hg",
        "CVS",
        "tmp/class-*",
        "tmp/es_*",
        "tmp/jshinter*",
        "tmp/replace_*",
        "tmp/static_compiler*",
        "tmp/template_compiler*",
        "tmp/tree_merger*",
        "tmp/coffee_script*",
        "tmp/concat-tmp*",
        "tmp/export_tree*",
        "tmp/sass_compiler*",
        "tmp/javascript",
        "tmp/result",
        "tmp/transpiled"
    ]
}

Exit Sublime once and open again. Right now Sublime has a bug which causes conflict with watchman, so above trick might work. Good luck.