diff --git a/index.html b/index.html
index d5555173c7..9c3ef5e63d 100644
--- a/index.html
+++ b/index.html
@@ -26,7 +26,7 @@
diff --git a/platform/core/src/identifiers/IdentifierProvider.js b/platform/core/src/identifiers/IdentifierProvider.js
index 9ef7c2c6a7..c6b2a136cb 100644
--- a/platform/core/src/identifiers/IdentifierProvider.js
+++ b/platform/core/src/identifiers/IdentifierProvider.js
@@ -22,7 +22,7 @@
/*global define*/
define(
- ["../../lib/uuid", "./Identifier"],
+ ["uuid", "./Identifier"],
function (uuid, Identifier) {
'use strict';
diff --git a/platform/forms/src/controllers/DateTimeController.js b/platform/forms/src/controllers/DateTimeController.js
index 5ef7735ed1..e2d0eec9a5 100644
--- a/platform/forms/src/controllers/DateTimeController.js
+++ b/platform/forms/src/controllers/DateTimeController.js
@@ -22,7 +22,7 @@
/*global define,moment*/
define(
- ["../../lib/moment.min"],
+ ["moment"],
function () {
"use strict";
diff --git a/platform/framework/src/Main.js b/platform/framework/src/Main.js
index 40636b2d38..44f6c8d7a5 100644
--- a/platform/framework/src/Main.js
+++ b/platform/framework/src/Main.js
@@ -21,14 +21,6 @@
*****************************************************************************/
/*global define, window, requirejs*/
-requirejs.config({
- shim: {
- 'platform/framework/lib/angular-route.min': {
- deps: [ 'angular' ]
- }
- }
-});
-
/**
* Implements the framework layer, which handles the loading of bundles
* and the wiring-together of the extensions they expose.
@@ -37,10 +29,10 @@ requirejs.config({
define(
[
'require',
- '../lib/es6-promise-2.0.0.min',
+ 'es6-promise',
'./FrameworkLayer',
'angular',
- '../lib/angular-route.min'
+ 'angular-route'
],
function (
require,