Created
December 5, 2018 09:32
-
-
Save knee-cola/df840ea611bcf19d1540bbb3b6bc8925 to your computer and use it in GitHub Desktop.
Shim for `process` variable for CDN modules packed as UMD
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
if(!this.process) { | |
this.process = {}; | |
} | |
if(!this.process.env) { | |
this.process.env = {}; | |
} | |
if(!this.process.env.NODE_ENV) { | |
this.process.env.NODE_ENV = "production"; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment