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
      }
    }
  ]
}
...