Cool! Good to see it could be solved. Might see if this is something that I can use as a solution too without NeutrinoJS.
Linking the solution for future reference btw: Peruse does not support window.eval() used in webpack-dev-server. Turning off hot reloading has no effect. · Issue #1063 · neutrinojs/neutrino · GitHub
edit: Yaay, the same solution can be applied to the project generated by vue-cli
:
// vue.config.js
module.exports = {
chainWebpack: config => {
config.devtool('cheap-module-source-map');
},
}
Really awesome that the guy from NeutrinJS got it figured out.
I’m even more confused than before about source maps. Didn’t know the client passively inspects and executes the source maps on the background — thought it was only for inspection and debugging using the devtools.