We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9849f81 commit c956653Copy full SHA for c956653
README.md
@@ -466,7 +466,7 @@ Rails.application.routes.draw do
466
end
467
```
468
469
-Then set each Ember application's `baseURL` to the mount point:
+Then set each Ember application's `rootURL` to the mount point:
470
471
```javascript
472
// frontend/config/environment.js
@@ -475,7 +475,7 @@ module.exports = function(environment) {
475
var ENV = {
476
modulePrefix: 'frontend',
477
environment: environment,
478
- baseURL: '/',
+ rootURL: '/',
479
// ...
480
}
481
};
@@ -486,7 +486,7 @@ module.exports = function(environment) {
486
487
modulePrefix: 'admin_panel',
488
489
- baseURL: '/admin_panel', // originally '/'
+ rootURL: '/admin_panel', // originally '/'
490
491
492
0 commit comments