Skip to content

Commit

Permalink
Fix overriding baseURL.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoclawski committed Jul 18, 2016
1 parent 6fcf0ac commit 3473a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
process.env.EMBER_CLI_INJECT_LIVE_RELOAD_PORT = options.liveReloadPort;
process.env.EMBER_CLI_INJECT_LIVE_RELOAD_BASEURL = baseURL;

app.use(options.baseURL + 'ember-cli-live-reload.js', function(request, response, next) {
app.use(baseURL + 'ember-cli-live-reload.js', function(request, response, next) {
response.contentType('text/javascript');
response.send(self.dynamicScript());
});
Expand Down

0 comments on commit 3473a64

Please sign in to comment.