With this feature, Env function will handle template strings inside variables. Example: ```env HOST="127.0.0.1" PORT="3030" APP_URL="${HOST}:${PORT}" ``` ```js Env('APP_URL', '') // "127.0.0.1:3030" ```