mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-24 05:05:53 +08:00
* fix #2223 - [feature] Implement dotenv-expand to accept variable expansion in dot env files * add to README TOC * fix readme * Update README.md
8 lines
294 B
Bash
8 lines
294 B
Bash
REACT_APP_X = x-from-original-env
|
|
REACT_APP_ORIGINAL_1 = from-original-env-1
|
|
REACT_APP_ORIGINAL_2 = from-original-env-2
|
|
REACT_APP_BASIC = basic
|
|
REACT_APP_BASIC_EXPAND = ${REACT_APP_BASIC}
|
|
REACT_APP_BASIC_EXPAND_SIMPLE = $REACT_APP_BASIC
|
|
REACT_APP_EXPAND_EXISTING = $REACT_APP_SHELL_ENV_MESSAGE
|