Chrome开发者工具:断点不一致地停止应用

时间:2015-12-16 21:39:43

标签: javascript debugging reactjs google-chrome-devtools webpack

我一直在开发工具中使用断点积分

但是...

最近Chrome开发者工具的断点不会停止在应该停止的100%的代码行上。(它变得模糊不清)。

有时我将不得不退出标签或多次刷新以使其最终达到断点。

问题 Chrome开发工具断点可能会出现这种不一致的常见原因吗?

以防万一:

设置 - Reactjs 0.14.0,Webpack Bundling,Linux

webpack.config.js

module.exports = {
  entry: "./js/app.js",
  output: {
    filename: "js/bundle.js"
  },
  debug: true,
  devtool: "#eval-source-map",
  module: {
    loaders: [
      {
        test: /\.jsx?$/,
        exclude: /(node_modules|bower_components)/,
        loader: 'babel'
      }
    ]
  }
};

0 个答案:

没有答案