Matas
Matas
I think this variable is more used for the CI/CD, when you are running your jobs you can pass `env` variables. So if you build your production builds in CI,...
Well you could easily test it out by creating `.env` files. But to answer your question, it reads from your shell config file. You can set your shell env variables...
In my case I needed to add these commands to the `before_script` in `gitlab-ci.yml` file. ```yml before_script: - | git config user.name "lerna" git config user.email "[email protected]" - git remote...
I check if the date is today and then adjust color appropriately. ```ts import { isToday } from 'date-fns'; const isTodaySelected = isToday(date); ``` ```ts todayTextStyle={{ color: isTodaySelected ? 'black'...