I developed a React / Redux application with the Meteor JS framework.
Installing React in meteor is a class (npm command):
meteor npm install --save to respond
But when I check with the extension response-devtools, I see that the React Version is a development assembly instead of building the assembly.
(The message "This page uses the React development construct. 🚧")
What should I do to use reactive assembly instead in my meteor app? I have already tried setting environment variables:
export NODE_ENV = 'production'
but the result is the same.
source share