You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
alancnet
changed the title
vue-style-loader does not update styles with shadowMode HMR
vue-style-loader does not update styles with shadowMode + HMR
Aug 20, 2019
Version
15.7.1
Reproduction link
https://github.com/alancnet/vue-style-loader-bug
Steps to reproduce
Steps to reproduce
npm install
npm start
src/app.vue
color: red;
withcolor: blue;
and save.How to fix
webpack.config.js
loader: 'vue-style-loader',
withloader: '@alancnet/vue-style-loader',
or
webpack.config.js
const shadowMode = true
withconst shadowMode = false
What is expected?
The styles should update with hot module replacement
What is actually happening?
The styles do not update
I have a pull request that fixes this: vuejs/vue-style-loader#41
The text was updated successfully, but these errors were encountered: