Currently facing an issue with webpack 5 and Vue.js 3 hot reloading - unsure if some npm packages require updates (vue-loader
?) or if there's a mistake on my end.
A simplified repository can be found here: https://github.com/dsine-de/vue3-webpack5
Initially, changes in .vue
files are effective - however, subsequent changes result in a Nothing changed
notification (or hangs at [WDS] App hot update...
, depending on the version of html-webpack-plugin
used).
By adding cache: false
to the webpack configuration, the issue seems to be resolved.
The assumption is that this may be a bug in vue-loader
since alterations to the entry .js
file trigger a complete refresh.