Page styles break when I change styles in Chrome DevTools with Webpack HMR Page styles break when I change styles in Chrome DevTools with Webpack HMR vue.js vue.js

Page styles break when I change styles in Chrome DevTools with Webpack HMR


One way to fix this is setting sourceMap to false for the sass loaderOptions in vue.config.js:

css: {    loaderOptions: {        sass: {            sourceMap: false        }    }}


I have the same problem with NUXT project. reinstall of sass-loader / sass in the last version was solve the problem.