Remove baseURL

This commit is contained in:
Vincent Fiduccia 2017-10-10 16:24:14 -07:00
parent a3a8fe7307
commit 4ed83887a0
No known key found for this signature in database
GPG Key ID: 2B29AD6BB2BB2582
1 changed files with 0 additions and 8 deletions

View File

@ -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;
}