From b8e4ba3c841869cc671acf19ef7bddf0c298d81f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 16 Nov 2015 11:39:16 -0700 Subject: [PATCH] Remove ES6 features from config --- config/environment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environment.js b/config/environment.js index 5ec51ce..e8cfd47 100644 --- a/config/environment.js +++ b/config/environment.js @@ -61,7 +61,7 @@ module.exports = function(environment) { } ENV.apiURL = apiURL; - ENV.contentSecurityPolicy['connect-src'] = `'self' ${apiURL}`; + ENV.contentSecurityPolicy['connect-src'] = "'self' " + apiURL; return ENV; };