Skip to content

Commit

Permalink
fix: HS-333: removed immediate stringify (#68)
Browse files Browse the repository at this point in the history
Co-authored-by: arun.mishra <[email protected]>
  • Loading branch information
arun-mi and arun.mishra authored Dec 8, 2023
1 parent 6c1664b commit ea35bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ let repoName = require("./package.json").name;
let repoPublicPath = `/${repoVersion}/${majorVersion}`;

const sdkEnv = process.env.sdkEnv;
const envSdkUrl = JSON.stringify(process.env.envSdkUrl);
const envBackendUrl = JSON.stringify(process.env.envBackendUrl);
const envSdkUrl = process.env.envSdkUrl;
const envBackendUrl = process.env.envBackendUrl;

let sdkUrl;

Expand Down

0 comments on commit ea35bda

Please sign in to comment.