From b6cbcb93c18696aee4e8753be0d76af2e286496d Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 23 Mar 2016 22:43:47 -0500 Subject: [PATCH] Add a note at the bottom --- webpack/debugging-with-full-source-maps.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webpack/debugging-with-full-source-maps.md b/webpack/debugging-with-full-source-maps.md index 292af86..1d5618c 100644 --- a/webpack/debugging-with-full-source-maps.md +++ b/webpack/debugging-with-full-source-maps.md @@ -17,3 +17,7 @@ This will generate a full source map with a filename that is something like `bundle.js.map`. Note: this will slow down the webpack build process a bit. + +Read more about the `devtool` configuration and all the possible options in +the [Webpack +docs](https://webpack.github.io/docs/configuration.html#devtool).