Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the default behavior of hot reloading?
Home
VueJS
What is the default behavior of hot reloading?
0
votes
asked
Sep 7, 2023
in
VueJS
by
DavidAnderson
What is the default behavior of hot reloading?
vuejs-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 7, 2023
by
DavidAnderson
Hot Reload is always enabled except below situations:
webpack target is node (SSR)
webpack minifies the code
process.env.NODE_ENV === 'production'
...