webpack-encore
webpack-encore copied to clipboard
__VUE_HMR_RUNTIME__ is not defined
When I try to use --hot
I get this error __VUE_HMR_RUNTIME__ is not defined
.
What versions of Encore, Node.js, and Vue do you use?
What version of Encore (not the bundle) do you use?
@symfony/[email protected]
the same as above, my project contains Vue, ts , single-spa-vue,a project about microfront,when i ignore webpack config about hot options,the issue also exit
solution:
{
test: /\.vue$/,
loader: require.resolve("vue-loader"),
options: {
hotReload: false,
},
},