Skip to content

Instantly share code, notes, and snippets.

@nchase
Created January 23, 2017 15:44
Show Gist options
  • Save nchase/087a49584ee04e454728804511f67697 to your computer and use it in GitHub Desktop.
Save nchase/087a49584ee04e454728804511f67697 to your computer and use it in GitHub Desktop.
Webpack EnvironmentPlugin
// Webpack's poorly-documented EnvironmentPlugin
//
// Read more here: https://github.com/webpack/webpack/blob/master/lib/EnvironmentPlugin.js
var webpack = require('webpack');
module.exports = {
plugins: [
new webpack.EnvironmentPlugin([
'NODE_ENV'
])
]
}
@floweb
Copy link

floweb commented Jan 27, 2017

Just wanted to thank you for this, I wonder why this is not more popular tho!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment