LoginSignup
7
4

More than 3 years have passed since last update.

webpack-dev-server で Chrome DevTools にエラーが出る

Last updated at Posted at 2021-01-05

webpack-dev-server で npm start したときに、Chrome DevTools でエラーが出る。

エラーメッセージ

DevTools failed to load SourceMap: Could not load content for webpack:///node_modules/sockjs-client/dist/sockjs.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME

回避方法
webpack.config.js にパラメーターを設定する

module.exports = {
  devtool: "eval-source-map",
}

devtoolパラメーターで利用可能な設定値の一覧

7
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
4