webpack-encore icon indicating copy to clipboard operation
webpack-encore copied to clipboard

__VUE_HMR_RUNTIME__ is not defined

Open st-schneider opened this issue 4 years ago • 6 comments

When I try to use --hot I get this error __VUE_HMR_RUNTIME__ is not defined.

st-schneider avatar Jun 26 '20 07:06 st-schneider

What versions of Encore, Node.js, and Vue do you use?

Kocal avatar Jun 26 '20 07:06 Kocal

What version of Encore (not the bundle) do you use?

Kocal avatar Jun 30 '20 14:06 Kocal

@symfony/[email protected]

st-schneider avatar Jun 30 '20 15:06 st-schneider

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

jiakangning avatar Aug 27 '20 02:08 jiakangning

solution:

 {
      test: /\.vue$/,
      loader: require.resolve("vue-loader"),
      options: {
        hotReload: false,
      },
    },

LiKang6688 avatar Dec 20 '22 22:12 LiKang6688