在babel下的调试
关键点:webpack.dev.conf.js文件 devtool选项设置成'#source-map', 这样就可以在chrome的source里打断点了
devtool有7个配置
修改 assetsPublicPath
webpack配置局域网ip
然后在项目根目录中找到config进入打开index.js,配置下面代码
devServer: {
historyApiFallbak: true,
hot: true,
host: "192.168.x.xx", //填写你自己的IP地址
port: 8080, //填写刚刚在dev字段中找到的port端口号
inline: true,
progress: true
}