Skip to content

Commit

Permalink
Use NODE_ENV convention in README example
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Mar 12, 2016
1 parent dc02a39 commit e81fa62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ If you want to prepend Sass code before the actual entry file, you can simply se
module.exports = {
...
sassLoader: {
data: "$env: " + process.env.ENV + ";"
data: "$env: " + process.env.NODE_ENV + ";"
}
};
```
Expand Down

0 comments on commit e81fa62

Please sign in to comment.