diff --git a/main.js b/main.js index 64548ece3e..72432d0f05 100644 --- a/main.js +++ b/main.js @@ -23,9 +23,9 @@ requirejs.config({ "paths": { - "legacyRegistry": "./src/legacyRegistry", - "angular": "./platform/framework/lib/angular.min", - "angular-route": "./platform/framework/lib/angular-route.min", + "legacyRegistry": "src/legacyRegistry", + "angular": "platform/framework/lib/angular.min", + "angular-route": "platform/framework/lib/angular-route.min", "moment": 'platform/telemetry/lib/moment.min', "moment-duration-format": 'platform/features/clock/lib/moment-duration-format', "uuid": 'platform/core/lib/uuid' diff --git a/platform/framework/src/Main.js b/platform/framework/src/Main.js index 936461bfaf..cc11b699e4 100644 --- a/platform/framework/src/Main.js +++ b/platform/framework/src/Main.js @@ -21,17 +21,6 @@ *****************************************************************************/ /*global define, window, requirejs*/ -requirejs.config({ - "shim": { - "../lib/angular.min": { - "exports": "angular" - }, - "../lib/angular-route.min": { - "deps": [ "../lib/angular.min" ] - } - } -}); - /** * Implements the framework layer, which handles the loading of bundles * and the wiring-together of the extensions they expose.