From 4ed83887a0d3bc868f1f1ce0ca58a45dbaafa768 Mon Sep 17 00:00:00 2001 From: Vincent Fiduccia Date: Tue, 10 Oct 2017 16:24:14 -0700 Subject: [PATCH] Remove baseURL --- config/environment.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/config/environment.js b/config/environment.js index 752c1f8a7..9a84a3a8d 100644 --- a/config/environment.js +++ b/config/environment.js @@ -53,7 +53,6 @@ module.exports = function(environment) { modulePrefix: 'ui', environment: environment, exportApplicationGlobal: true, - baseURL: '/', locationType: 'auto', EmberENV: { FEATURES: { @@ -137,7 +136,6 @@ module.exports = function(environment) { if (environment === 'test') { // Testem prefers this... - ENV.baseURL = '/'; ENV.locationType = 'none'; // keep test console output quieter @@ -147,12 +145,6 @@ module.exports = function(environment) { ENV.APP.rootElement = '#ember-testing'; } - if (process.env.BASE_URL) { - ENV.baseURL = process.env.BASE_URL; - } - - ENV.APP.baseURL = ENV.baseURL; - if (process.env.FINGERPRINT) { ENV.APP.fingerprint = process.env.FINGERPRINT; }