一、当webstrom 热更新不灵活时,在“File” >> "Settings" >> "Appearance & Behavior" >> "system settings"中,勾掉synchornization如下的最后一项便可(禁止自动保存);vue
二、npm run build以后文件引入的路径不对时,可尝试修改 config/index.js 的assetsPublicPath('./'或者'/'或者'../'等等);webpack
三、vue项目谷歌浏览器断点打不上,不能调试时, 将#cheap-module-eval-source-map 修改为 #source-map(在config/index.js或者 build/webpack.dev.config.js),或者在须要打断点的地方写上debugger就好了。web