You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Vue Template compiler emits different content depending on this setting. It would be advised to include it in the scripts so devs can switch output easily from development to production...
"scripts": {
"build": "NODE_ENV=development webpack",
"test": "echo "Error: no test specified" && exit 1"
},
--> Output: build.js ---> 877 kB
vs
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "echo "Error: no test specified" && exit 1"
},
--> Output: build.js ---> 104 kB (35kB gzip)
Great work on this. The workflow and example are very well done.
DanielRosenwasser, lightsound, jamesxv7 and JefPatat
Activity
fraindz commentedon Oct 24, 2018
@DanielRosenwasser can you please review and merge?