Remove ES6 features from config

This commit is contained in:
Matthew Dillon 2015-11-16 11:39:16 -07:00
parent 7d05740901
commit b8e4ba3c84

View file

@ -61,7 +61,7 @@ module.exports = function(environment) {
} }
ENV.apiURL = apiURL; ENV.apiURL = apiURL;
ENV.contentSecurityPolicy['connect-src'] = `'self' ${apiURL}`; ENV.contentSecurityPolicy['connect-src'] = "'self' " + apiURL;
return ENV; return ENV;
}; };