i have developped an application React/Redux with the Meteor JS framework.
The installation of React in meteor is class (npm command) :
meteor npm install --save react
But when i check with the react-devtools extension, i see that React Version is the development build instead of production build.
(the message is "This page is using the development build of React. ???? ")
What have i to do to use the react production build instead in my meteor app ? i already tried to set environnement variables :
export NODE_ENV='production'
but the result is the same.