File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ Rails.application.routes.draw do
466466end
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};
You can’t perform that action at this time.
0 commit comments