Lucifier129 / react-lite

An implementation of React v15.x that optimizes for small script size
MIT License
1.73k stars 98 forks source link

How to enable production mode? #67

Closed PierBover closed 8 years ago

PierBover commented 8 years ago

Does react-lite have a dev and production mode like React?

With Webpack I use this:

new webpack.DefinePlugin({
  "process.env": { 
     NODE_ENV: JSON.stringify("production") 
   }
})

Does this also work with react-lite?

Lucifier129 commented 8 years ago

It can work, but does not optimize anything.

react-lite have no production mode, it writes for runing in production.

PierBover commented 8 years ago

Awesome, thanks for the clarification.