0 votes
in VueJS by

What is the default behavior of hot reloading?

1 Answer

0 votes
by

Hot Reload is always enabled except below situations:

  1. webpack target is node (SSR)
  2. webpack minifies the code
  3. process.env.NODE_ENV === 'production'
...