Skip to content

Commit c956653

Browse files
JCBarryseanpdoyle
authored andcommitted
baseURL deprecated in favor of rootURL
1 parent 9849f81 commit c956653

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ Rails.application.routes.draw do
466466
end
467467
```
468468

469-
Then set each Ember application's `baseURL` to the mount point:
469+
Then set each Ember application's `rootURL` to the mount point:
470470

471471
```javascript
472472
// frontend/config/environment.js
@@ -475,7 +475,7 @@ module.exports = function(environment) {
475475
var ENV = {
476476
modulePrefix: 'frontend',
477477
environment: environment,
478-
baseURL: '/',
478+
rootURL: '/',
479479
// ...
480480
}
481481
};
@@ -486,7 +486,7 @@ module.exports = function(environment) {
486486
var ENV = {
487487
modulePrefix: 'admin_panel',
488488
environment: environment,
489-
baseURL: '/admin_panel', // originally '/'
489+
rootURL: '/admin_panel', // originally '/'
490490
// ...
491491
}
492492
};

0 commit comments

Comments
 (0)