diff --git a/CommonServer/Utils/StartServer.ts b/CommonServer/Utils/StartServer.ts index 7a5f082ab1d..c08f4546f82 100644 --- a/CommonServer/Utils/StartServer.ts +++ b/CommonServer/Utils/StartServer.ts @@ -116,7 +116,7 @@ const init: Function = async ( window.process.env = {} } const envVars = '${JSON.stringify(process.env)}'; - window.process.env = JSONFunctions.parse(envVars); + window.process.env = JSON.parse(envVars); `; Response.sendJavaScriptResponse(req, res, script);