forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request facebook#118 from ortonomy/issue166-add-env-example
closes facebook#116 - add an example ``.env`` file
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# delete the environment strings as appropriate | ||
|
||
# enable SASS support | ||
REACT_APP_SASS=true | ||
|
||
# enable LESS support | ||
REACT_APP_LESS=true | ||
|
||
# enable Stylus support | ||
REACT_APP_STYLUS=true | ||
|
||
# enable CSS modules | ||
REACT_APP_CSS_MODULES=true | ||
|
||
# enable Sass modules | ||
REACT_APP_SASS_MODULES=true | ||
|
||
# enable Less modules | ||
REACT_APP_LESS_MODULES=true | ||
|
||
# enable Stylus modules | ||
REACT_APP_STYLUS_MODULES=true | ||
|
||
# enable stage-0 Babel preset | ||
REACT_APP_BABEL_STAGE_0=true | ||
|
||
# enable decorators support | ||
REACT_APP_DECORATORS=true | ||
|
||
# enable webpack dashboard access | ||
REACT_APP_WEBPACK_DASHBOARD=true |