source-map 使用

1. vue.config.js 中增加配置

module.export = {
  chainWebpack(config) {
    config.when(
      process.env.NODE_ENV === 'development', // production
      config => config.devtool('#cheap-module-eval-sourcec-map')
    )
  }
}

2.  package.json 中新增 debug 指令

{
  "script": {
    "debug": "vue-cli-service build --mode debug"
  }
}

 

你可能感兴趣的:(vue)