I have HTML file as follows below and process.env variables as
process.env.var1='abc' but once application is loaded the variable is undefined.
res.send(`
<html>
<head>
<link href="${process.env.var1}" rel="stylesheet">
</script>
</head>
<body>
<div id="react-root"></div>
</body>
</html>`);