8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【webpack】source mapに指定されるdomainやpathを変更する

Last updated at Posted at 2017-04-20

webpackのトランスパイル等でjsを生成するときsource mapを出力することができますが、
source mapで指定されるdomainやpathを変更する方法を知ったので記事書きます。

設定方法はドキュメントがありました。
https://github.com/webpack/docs/wiki/configuration#outputdevtoolmodulefilenametemplate

やりたいこと

webpack://となってしまうのを変更したい。

例えばこうなるのを

image

こんな感じにしたい

image

設定方法

webpack.config.jsoutput.devtoolModuleFilenameTemplateを設定します。
今回は以下のように設定しました。

	output: {
		//・・・
		devtoolModuleFilenameTemplate: 'src/[resource-path]',
	},

自由に変更したい場合は、以下のページを参考に src と書いたあたりを自由に変更するといいです。

参考:
https://github.com/webpack/docs/wiki/configuration#outputdevtoolmodulefilenametemplate

sourceMap抜粋

設定なし
{"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///webpack/bootstrap aa8079d35e035494576e","webpack:///./sub.js","webpack:///./main.js"],・・・
設定後
{"version":3,"sources":["src/webpack/universalModuleDefinition","src/webpack/bootstrap c0cbd02b78933164b9eb","src/./sub.js","src/./main.js"],・・・

サンプルプロジェクト

は、こちら
https://github.com/ota-meshi/webpack-devtool-module-filename-template-sample

何がうれしいの?

別にwebpack://でいいじゃん。何が困るの?って感じですが、
私はremap-istanbulがうまくreportが出なくて、この方法を探しました。
remap-istanbulが何なのか?この方法がどう使えるのかはまた別で記事書きます。

8
6
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
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?