-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
liveReloadBaseUrl with absolute url no longer supported #33
Comments
Hi, I'm the author of the mentioned commit. So if you set You said that it no longer seems to work. What are the symptoms? Do you get any errors or any unexpected output in HTML? |
Thanks for the response @jgoclawski To clarify, I'm using the ember-cli-deploy development workflow – index.html served on localhost:3000, ember server running on localhost:4200. Previously (before your PR), using
This allowed livereload to be served on http://localhost:4200/ember-cli-live-reload.js even when accessing from http://localhost:3000/index.html With this change to use
The script is injected but I get a 404 for ember-cli-live-reload.js (because it's not being intercepted)
Perhaps using absolute paths in Let me know if this makes sense? If needed I can try creating a repo to illustrate |
For what it's worth, this is biting us too at Precision Nutrition. We've pinned to 1.4.0 in the mean time. |
Would #36 solve your problem? |
@lukemelia yes, thanks -- tested and it works |
@lukemelia test failed because now we have the same problem as #35 |
@pieter-v I did face above as well, but I think it's a separate issue, and can be dealt with in the meantime by defining |
@wongpeiyi thanks specifying the 'liveReloadOptions' solved the problem |
Ah, I misread a comment above. Pinning to 1.4.0 gets this working with |
In the past, we could use
"liveReloadBaseUrl": "http://localhost:4200/"
which is necessary for using ember-cli-deploy for a development workflow, i.e. accessing fromhttp://localhost:3000/
However, with rwjblue@3473a64 this no longer seems to work
Should this be
instead?
The text was updated successfully, but these errors were encountered: