Useful Webpack DefinePlugin Usages
What the plugin does
The Webpack DefinePlugin allows you to create
global constants which can be configured at compile time and used in your webpack bundle.
Example constant definitions:
plugins: [
//...
new webpack.DefinePlugin({
PRODUCT...
tomasalabes.me3 min read