[Vuejs]-How to turn on production mode for VueJS with gulp task using webpack

0👍

Use the terminal to set the NODE_ENV like this

export NODE_ENV=production

You can check if this set correctly by using echo

echo $NODE_ENV

Leave a comment