I encountered an issue when using a custom cms prefix for Umbraco. I fixed it by updating the controller.js files. See below for the changes:
TheDashboard.controller.js, Line 5:
From:
$http.get('/umbraco/backoffice/api/TheDashboard/GetViewModel')
To:
$http.get('backoffice/api/TheDashboard/GetViewModel')
TheDevDashboard.controller.js, Line 5:
From:
$http.get('/umbraco/backoffice/api/TheDevDashboard/GetViewModel')
To:
$http.get('backoffice/api/TheDevDashboard/GetViewModel')
I encountered an issue when using a custom cms prefix for Umbraco. I fixed it by updating the controller.js files. See below for the changes:
TheDashboard.controller.js, Line 5: From:
$http.get('/umbraco/backoffice/api/TheDashboard/GetViewModel')
To:$http.get('backoffice/api/TheDashboard/GetViewModel')
TheDevDashboard.controller.js, Line 5: From:
$http.get('/umbraco/backoffice/api/TheDevDashboard/GetViewModel')
To:$http.get('backoffice/api/TheDevDashboard/GetViewModel')