Apr 20, 2021
in webpack or rest of the app, common practice it using environment variables via node.js' `process` object. So usually I don't expect to see
```
const greetings = `Hello ${NODE_ENV}`
```
but see
```
const greetings = `Hello ${process.env.NODE_ENV}`
```
Do you have idea how you may apply this solution when you use `process.env.NODE_ENV` ?