Vue.js question detail
What is the default behavior of hot reloading?
Hot Reload is always enabled except below situations:
- webpack target is node (SSR)
- webpack minifies the code
- process.env.NODE_ENV === 'production'
Vue.js question detail
Hot Reload is always enabled except below situations: