0 votes
in VueJS by
How do you disable hot reloading explicitly?

1 Answer

0 votes
by

You can use hotReload: false option to disable the Hot Reload explicitly.

It can be configured as below,

module: {
  rules: [
    {
      test: /\.vue$/,
      loader: 'vue-loader',
      options: {
        hotReload: false // disables Hot Reload
      }
    }
  ]
}

Related questions

0 votes
asked Sep 12, 2023 in VueJS by GeorgeBell
0 votes
asked Sep 10, 2023 in VueJS by DavidAnderson
...