我有以下结构:
app/
pods/
components/
user-login/
component.js
style.scss
template.hbs
模板文件和组件文件 livereload 正确,但是,当我在 Atom 中保存对我的样式文件的更改时,这些更改不会应用于网页 - 它们仅在我终止并重新运行时应用:
ember server
并重新加载网页。我已经安装了以下内容:
ember-cli-styles-reloader
我尝试添加:
"liveReload": true,
"watcher": "polling"
到:
.ember-cli
我还尝试将这些选项添加到:
ember-cli-build.js
在 app 变量中。
我错过了什么?