babel-plugin-transform-global-defs
Transform Global definitions that are available at build timeInstall
npm install babel-plugin-transform-global-defs
Options
{
"global_defs": {
"process.env": {
"NODE_ENV": "production"
}
}
}
In
if (process.env.NODE_ENV !== 'production') {
DEBUG = true;
}
Out
if ('production' !== 'production') {
DEBUG = true;
}