could you please tell me how to access env
variable in scss
.Here is my code
https://repl.it/@naveennsit/DirtyAcrobaticClasslibrary
I am able to access env
variable in jsx
like that
<a>About sss{process.env.customKey}</a>
I created env
variable like this
module.exports = {
env: {
customKey: "my-value",
red: "red",
bg:'data:image/jpeg;base64,
Now I want to access variable
in scss file.But I am getting error.
I am trying to access like this
// background-image: url($process.env.bg})
any update ?