前端debugger未生效

周文豪發表於2024-05-21

解決辦法:

在vue.config.js中新增如下內容

module.exports = {
  configureWebpack: {
    devtool: 'source-map'
  }
}

相關文章